Posts

Showing posts with the label exploit

Tutorial: sql injection

Image
Sql Injection tutorial advanced. So far in all the hacks the most used by h4ck3rs from n00b to an 1337 one has been the SQL injection attack. Here we at hackiteasy we present a tutorial on how to apply SQL injection to websites. This trick has been found to be working on a huge no. of sites. The hack starts as follows. Finding vulnerable site To find a vunerable site open google Type in a dork like "inurl:index.php?id=" (without quotes) there are many other similar formats for finding such vulnerable pages. Now click on any site like http://www.yoursite.com/index.php?id=786 Now to test if the siote is hackable or not add a ' at the end of the site. If the site gives an error like "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '\'84' at line 1" we can assume that it is vunerable. If not try some other site. We have the vulnerable site now. So lets try with differe...