SQL Blind Injection Proof of Concept
Version vom 11. März 2023, 10:12 Uhr von Thomas.will (Diskussion | Beiträge)
- cat blind.html
<!DOCTYPE html>
<html>
<body>
<h2>SQL Injection</h2>
<form method="post" action="sql-blind.php">
<label for="fname">User</label><br>
<input type="text" name="search"><br>
<input type="submit" name="submit">
</form>
<br>
<table border = "1">
<tr>
<td>user</td>
<td>password</td>
</tr>
</body>
</html>