SQL Blind Injection Proof of Concept

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
  • 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>