Today I am gonna show you how hackers get into a website using SQL injection with the Havij tool.
Things you will need –>
- Havij SQL injection Tool: There is a free version HERE, but your probably want to look around and see if you can get your hands on the full-version.
- A SQL vulnerable site, Here is the example site:
- http://toyonorte.com.co/catalogo_nuevos_detalle.php?id=2
- A very important thing you will need: your mind.
Checking for SQL vulnerability —>
Now to check is this site vulnerable to SQL, a hacker will simply add ‘ (apostrophe) after the site url like this:
http://toyonorte.com.co/catalogo_nuevos_detalle.php?id=2′
and the hacker will get this error on the site
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 ‘\” at line 1
It means that site is vulnerable to SQL injection.
Exploiting the vulnerable site —>
- Open Havij and paste site url in target field and hit enter.
- Now wait for Havij to get all the databases of the website.
- Now the hacker clicks on available database of site and click on Get Tables.
- By clicking Get Tables Havij will look after the tables available in the database.
- Now after the scanning Havij will get all tables, now the main work will start , they must check if there table available with a name that has something to do with admin, users and something similar. Here, we have a table called usuario in this website. It is selected and then click on Get Columns.
- Now after clicking Get Columns havij will get all the columns available in users table.
- In this case, the hacker found different columns like id, login, pass and many more.
- Now select the columns and click on Get Data like in pic given below.Now havij will look after the data available in columns login and password i.e admin username and password like i getusername –> adminpassword–> 21232f297a57a5a743894a0e4a801fc3 (in encrypted form)
- Now after they have found the username and password there is a problem. The password is encrypted in md5 language , so the hacker must crack it .
- To crack encrypted password the hacker copies the password click on MD5 tab in havij and paste the encrypted password in MD5 hash field and hit start. Now havij will try to crack the password.
- Now they get the Password cracked for admin.
- The hacker will check for admin panel where they will login with username and password.
- To find admin panel click Find Admin tab in Havij and click start. Now havij will check the admin panel of website.
In this case, they found http://toyonorte.com.co/admin/ as admin panel and open it in a web browser. They login with username and password and now they have control of the website.
Notes—>
- Website hacking is illegal
- Use proxy, tor, vpn for security.
- This is for educational purposes and your own personal protection.
- U MAY LIKE OUR FB PAGE
Post a Comment