Showing posts with label Others. Show all posts
Showing posts with label Others. Show all posts

Thursday, August 16, 2012

Decision Table Testing Technique

Decision table testing technique involves mapping of various conditions with their respective outcomes to form a rule.


For eg: Below decision table has been designed for Search Flight panel where Search Flight button would be  disabled(True/False) as per its input conditions for Fly From and Fly To drop-downs.

For eg for Rule 3-If 'Fly From' and 'Fly To' drop down have empty values then 'Search flight button' would be disabled






Friday, February 4, 2011

SQL Injection Test Data

Here I am listing few data used for SQL injection to exploit security attack

Injecting [' OR '1'='1]
Injecting [' OR '1'='1]
Injecting [ || 1=1]
Injecting [ || 1=1--]
Injecting [' OR 1=1--]
Injecting [" OR 1=1--]
Injecting [' OR 'X'='X]
Injecting [" OR "X"="X"]
Injecting [') OR ('X'='X]
Injecting [Intru'der]

Wednesday, September 29, 2010

Web Accesability Guidelines

Find the below url to know the basic web accessibility guidelines
http://checkwebsite.erigami.com/accessibility.html

Thursday, August 5, 2010

Cookie Testing

Cookie is a piece of information which is passed between web pages stored on server.Often personal information like login credentials are stored.So cookie testing is part of security testing.

Here are some of the test cases
1)Test if sensitive information is stored in cookie.

2)Remove cookies
In mozilla
-Right click,Select View Page Info
-Go to Security Tab,Click on View Cookies
-Remove one or more cookies
In IE
-Go to Internet options->General tab->Browser history settings button->View files,where you can delete cookie files which are website specific eg: cookie:username@aol.com

3)Disable cookie
In mozilla
-Go to Tools->Options->Privacy
-Select dropdown Firefox with'User custom settings for history'
-Uncheck Accept cookies from sites option.
In IE
-Go to Internet Options->Privacy tab
-Select a setting for Internet Zone->High

4)Test cookie in different browsers.

5)Corrupt cookies
Install add-ons for editing cookies
https://addons.mozilla.org/en-US/firefox/addon/6683/
Mozilla cookies are stored in cookies.txt in ~\Mozilla\Firefox\Profiles\j72pd7xa.default\cookies.sqlite
http://www.snapfiles.com/get/iecookies.html
These add-ons help to edit,delete and various actions on cookies
http://www.newsqa.com/edit-cookies-in-your-browser/
6)Change USERID and check if any other user's information is revealed or not.