Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- javascript: (function () {
- XML = new XMLHttpRequest();
- XML.open('GET', '/me', true);
- XML.send();
- XML.onreadystatechange = function () {
- if (XML.readyState == 4 && XML.status == 200) {
- _x = XML.responseText;
- prompt("Token:", _x.match(/name="csrf-token" content="(.*)"/gi).toString().split("\"")[3].split("\"")[0]);
- }
- };
- })();
- //BY edi742;
Advertisement
Add Comment
Please, Sign In to add comment