Posts

Showing posts from October, 2016

Test Scenarios for Security Testing

Verify the web page which contains important data like password, credit card numbers, secret answers for security question etc should be submitted via HTTPS (SSL). Verify the important information like password, credit card numbers etc should display in encrypted format. Verify password rules are implemented on all authentication pages like Registration, forgot password, change password. Verify if the password is changed the user should not be able to login with the old password. Verify the error messages should not display any important information. Verify if the user is logged out from the system or user session was expired, the user should not be able to navigate the site. Verify to access the secured and non secured web pages directly without login. Verify the “View Source code” option is disabled and should not be visible to the user. Verify the user account gets locked out if the user is entering the wrong password several times. Verify the cookies should not store pas...

LIST OF BEST FREE SMS SITES

Image
www.160by2.com www.way2sms.com www.ultoo.com www.freephonesms.com   www.funsms.net www.sendsmsnow.com www.smsgupshup.com www.indyarocks.com www.textmefree.com www.sms2friends.com www.indiansms.net www.textmefree.com www.send-sms-now.com www.freesmsfun.com

TYPE “YOU ARE A FOOL” CONTINUOUSLY:-

Open Notepad. Paste the following code in the notepad file: Set wshShell = wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “You are a fool.” loop Save the file with any name but with .vbs extension and close it. Ope the file and see how it makes you type!

CONVEY YOUR FRIEND A LIL’ MESSAGE AND SHUT DOWN HIS / HER COMPUTER

Type in Notepad :- @echo off msg * I don’t like you shutdown -c “Error! You are stupid!” -s Save it as “Anyname.BAT”. Like notepadvirus.bat

Top 100 Free Proxy Server List

FilterByPass –   https://www.filterbypass.me/ Unlock My Web –  http://www.unblockmyweb.com/ Proxy Site –   https://www.proxysite.com/ Hide My Ass –  https://www.hidemyass.com/ Proxify –  https://proxify.com/  (3 days trial) Free YouTube Proxy –  http://www.youtubeunblockproxy.com/ Proxy –  http://proxy.org/ England Proxy –  https://www.englandproxy.co.uk/ Unblocker –  https://www.unblocker.us/ Fast USA Proxy –  http://fastusaproxy.com/   New IP Now –  http://newipnow.com/ Anonymouse –   http://anonymouse.org/anonwww.html Hidden Digital Info –  http://hiddendigital.info/ Anony Mizer –  https://www.anonymizer.com/  (14 days free trial) K Proxy –   http://www.kproxy.com/ Don’t Filter –  http://dontfilter.us/ Working Proxy –  https://www.workingproxy.net/ Proxy 2014 –  http://www.proxy2014.net/ Prox Me Call Me Names –  http://www.proxmecallmenames.com/ Change IP...

How to hide or unhide folders and files

The main advantage of hiding using the attrib command is that when we click on the show hidden files option in Windows then the file or folder isn’t shown. For hiding files and folders we need to use a procedure. In the following scenario I first created a new folder to show how to hide or unhide a folder. To hide: Step 1:  Go to Start Menu > All Programs >Accessories > Command prompt. or simply press Windows key+R. Step 2:  Now in command prompt type />  attrib +s +h <drive path>:\<folder name> ex: /> attrib +s +h d:\xyz Thats it now your folder in D drive will not shown to you even you are cheked in show hidden file will not visible. To Unhide: TO unhide a folder you just need to chage the sign of ‘+’ into ‘-‘ to visible your folder Step 3: /> attrib -s -h d:\xyz thats it now your file will visible to you. ~~~~~~~

How to create more than 3,000 folders under a minute

1) Open your notepad and type the following code. @echo off :top md %random% 2) Save it as 1000.bat @echo off makes your screen appear blank but it is actually making hundreds of folders. md %random% is command that creating folders with random names.( md is a command to make directory in ms-dos) goto top – return the command to :top, causes an infinite loop. NOTE: The folders will get created in the directory where you saved the ”1000.bat” file. The file might look suspicious to your friends. So if you are looking to fool your friends, then change the file name and also the icon so that he doesn’t suspect the file to be a virus.  

Use Google As Timer

Image
As you can seen, set is an optional part of the command. You can also give precise time in number of hours, minutes and seconds. For example: timer for  1 hour 30 minutes 50 seconds Enjoy

Use Google Chrome as a Notepad

Image
We all need to take quick notes and  notepad applications  come really handy for this. Most of the time Google Chrome remains open on our computer screen, wouldn’t it be great if we could use one of  Chrome tabs  as a notepad? Well it is possible and it’s pretty easy. Open Chrome and type the following code in address bar, hit enter and you will be able to type in Google Chrome. 1 data:text/html, <html contenteditable> Enjoy