diff options
author | Marcin Zelent <zelent.marcin@gmail.com> | 2018-05-30 18:27:51 +0200 |
---|---|---|
committer | Marcin Zelent <zelent.marcin@gmail.com> | 2018-05-30 18:27:51 +0200 |
commit | ee0bd3f7716546f679bd390d7b681fedf949b2fb (patch) | |
tree | a8b21d9c4707521dcf161bbdc7a20f622700c6f2 /examples/sql-injection/index.html | |
parent | 7b2e079f4ef3cd3f16c6c5ca30fc3e97fd982b28 (diff) |
Added buffer overflow example
Diffstat (limited to 'examples/sql-injection/index.html')
-rw-r--r-- | examples/sql-injection/index.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/sql-injection/index.html b/examples/sql-injection/index.html new file mode 100644 index 0000000..d3e760b --- /dev/null +++ b/examples/sql-injection/index.html @@ -0,0 +1,25 @@ +<!DOCTYPE HTML> +<html> + <head> + <title>Login page</title> + <meta charset="utf-8" /> +<style> +body { + text-align: center; +} + +input { + margin-bottom: 5px; +} + +</style> + </head> + <body> + <h1>Login</h1> + <form action="login.php" method="post"> + <input type="text" name="email" placeholder="E-mail"><br> + <input type="password" name="pass" placeholder="Password"><br> + <input type="submit" value="Log in"> + </form> + </body> +</html> |