SQL Blind Injection Proof of Concept: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „*cat blind.html <script lang=html> <!DOCTYPE html> <html> <body> <h2>SQL Injection</h2> <form method="post" action="sql…“)
 
Zeile 1: Zeile 1:
 
*cat blind.html
 
*cat blind.html
<script lang=html>
+
<syntaxhighlight lang=html>
 
<!DOCTYPE html>
 
<!DOCTYPE html>
 
<html>
 
<html>
Zeile 18: Zeile 18:
 
         </body>
 
         </body>
 
</html>
 
</html>
</script>
+
</syntaxhighlight>

Version vom 11. März 2023, 10:12 Uhr

  • 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>