Skip to content

Instantly share code, notes, and snippets.

@wellingtonlee
Created November 27, 2016 20:49
Show Gist options
  • Save wellingtonlee/694f892fe08f2c96f5e56de8475af0a5 to your computer and use it in GitHub Desktop.
Save wellingtonlee/694f892fe08f2c96f5e56de8475af0a5 to your computer and use it in GitHub Desktop.
Vulnerable Web Page
<!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