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 attribute in servlets?
Tell the new features added in servletrequest interface i.e. Servlet 2.4
Define servlet mapping?
How can we invoke another servlet in a different application?
what is servlet and what you get when we use servlets?
What are important features of Servlet 3?
What is cgi?
can we use more than one controller in web application
Explain the features are in servlet 3?
Explain how to improve Servlet Performance?
What is the type of method for sending request from http server?
why are using HttpServlet in realtime projects and why are not using Genericservlet