Quality is delighting customers
Tags:
There are certain corporate policies (ex. CPI 810 etc) which governs the password policies. Apart from the discussion above
1. Three invalid attempts should lock the user.
2. Ideally passwords should not be stored in the log files or registry. Even if they are stored they should be encrypted.
3. Passwords should not contain users first name and last name.
Hey guyz you have missed something major i.e. SQL INJECTION............
Well Saivarma try this code in the login page like 1 OR 1=1, 1' OR '1'='1, 1'1, '; DESC users; ...... etc in the login and password field to check the security of your application.
Thanks,
Snehasish
The madatory to check while testing password field is ,the password should not enabled to view by otheres it should be encrypted.(like showing pasword in "********").
You have to use BVA Tecnique and ECP for testing such type 0f test cases.you have to choose like enter the characters to check the password are min as 3 and 4,59,60 characters are valid input data,invalid data are 2 and 61 characters.
Hi,
You are asking about boundary value analysis and ecp.
BVA:take the value range and check the edit box according to the customer requirement.
you are saying min value is 4 and max value is 60
always follow this procedure for BVA testing "min value, min value-1,min value+1, middle value,max value-1 max value+1,max value" according to your que the BVA test should be like this
enter 4 char and test the application(here the test should pass)
enter 4-1 i.e 3 char and test the application(here the test should fail)
enter 4+1 i.e 5 char and test the application(here the test should pass)
enter 30 char and test the application(here the test should pass)
enter 60 char and test the application(here the test should pass)
enter 60-1 i.e 59 char and test the application(here the test should pass)
enter 60+1 i.e 61 char and test the application(here the test should fail)
checking the application with combinatio of valid and invalid data is known as ECP.
when testing starts in your project u will be getting some test data produced by ur client or ur manager
in ECP test for a login page you have to test different i/p
user name password
valid valid
invalid valid
invalid invalid
valid invalid
© 2012 Created by Quality Testing.