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 |
What do you mean by cgi?
What is the difference between jsp and servlet life cycle?
How do you find out what client machine is making a request to your servlet
What are the phases of a servlet life cycle?
How can you push data from an Applet to a Servlet?
How we can call a jsp from the servlet?
What method is used to create database connection in servlets?
What are the functions of Servlet container?
What are some disadvantages of storing session state in cookies?
What are the security issues in Servlets?
How can a servlet be used to generate plain text instead of html?
If a servlet is not properly initialized, what exception may be thrown?