What are the security issues in Servlets?
Answers were Sorted based on User's Feedback
Answer / bikash khuntia
1.Using Cookies is not secure for sending and recieving data
bcz everyone can view and modify the data in cookies
2.Using doGet() for sending user information to server
being visible in browser
| Is This Answer Correct ? | 57 Yes | 3 No |
Answer / akanksha agarwal
there are 2 type of applets-
*trusted
*untrusted
untrusted applets are constrained to operate in sand
box.they can not put the operations in user's machine which
are dangerous.this include reading and writing files.code
that are loaded from a remote machine is also untrusted.
trusted servers are those which are loaded from the local
machines.they are not dangerous for the system.
| Is This Answer Correct ? | 16 Yes | 4 No |
How do I know if java is running on linux?
What is difference between cookies and httpsession?
Which exception is thrown if the servlet is not initialized properly?
What are the new features added to servlet 2.5?
What are advantages of servlets over cgi?
how the jsp page can be regenerated?
how the server will know its the same jsp page?
Can you refresh servlet in client and server-side automatically?
What must be implemented by all servlets?
What is the need of servlet filters?
Write a program to show the functionality of doget and dopost method?
Can we use servlets in JavaScript?