How to write security and cookie test cases for web application

Can any one tell me how to write security and cookkie test cases for web application with an example

Questions by prakash.pp   answers by prakash.pp

Showing Answers 1 - 9 of 9 Answers

Once the User entered to the Application with their Login, their details are entered to the specific system. on enabled the Pop-Ups after login, the cookies fetch data from the login. for next time login application should load the password after entered the Userid. if the password is populated means "No issue". if u got any problem, there might be an issue. we can see the Cookies status in the Tool menu browser.
Cookies are browser independent. Once the  Cookies are deleted. user should enter the password again..
In this we will test the volume of the cookies, how comes its populate correct like wise we could test..

The major things, which we have to consider while writing the security test cases are: sql injection, url re-writing and cross site scripting. If e.g. at login page we are able to inject the sql injection malicious script. The security will break. We will have to check in all the fields for sql injection.
We should check that after login if we paste the url in other browser. It should not open the page, while the page should be redirected to the login page.
We should also check the cross site scripting scripts should not be accepted by any field in the application, which is open for use.

If we are able to validate these issues, we are able to test the application for security.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions