Created
November 27, 2016 20:49
-
-
Save wellingtonlee/694f892fe08f2c96f5e56de8475af0a5 to your computer and use it in GitHub Desktop.
Vulnerable Web Page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<form action="vuln.php" method="get"> | |
Username:<br> | |
<input type="text" name="username" value=""> | |
<br> | |
Password:<br> | |
<input type="password" name="password" value=""> | |
<br><br> | |
<input type="submit" value="Submit"> | |
</form> | |
<p>If you click the "submit" button, the login form-data will be sent to a page called "vuln.php".</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment