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 is the use of servlet wrapper classes?
What are the types of servlets? Explain
What is difference between the HTTP Servlet and Generic Servlet? Explain about their methods and parameters?
What is dispatcher servlet?
What is the difference between portlet and servlet?
Once the destroy() method is called by the container, will the servlet be immediately destroyed? What happens to the tasks(threads) that the servlet might be executing at that time?
Explain how does JSP handle run-time exceptions?
Whats the advantages using servlets over using CGI?
Is java servlet still used?
What are its drawbacks of cgi?
Should I override the service() method?
How many Cookies can a host support?