Advertisement
ellisgl

Untitled

Jan 24th, 2017
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function() {
  2.     var els = window.frames["mainFrame"].document.getElementById("pcp_PasswordInfoHandler:doShowpassword");
  3.     if (els.length == 0) {
  4.         console.log("Button not found");
  5.     } else {
  6.         els.click();
  7.         var inter = window.setInterval(function() {
  8.             var user = window.frames["mainFrame"].document.querySelector('#inp_mlabs_credential_login > div.field-value > div').textContent;
  9.             var pass = window.frames["mainFrame"].document.querySelector('#inp_mlabs_portal_password_panel_key_password > div.field-value > div').textContent;
  10.             if (/^\*{3,}$/.test(pass)) {
  11.                 console.log('NOPE');
  12.             } else {
  13.                 console.log(user);
  14.                 console.log(pass);
  15.                 window.open('https://google.com');
  16.                 window.clearInterval(inter);
  17.             }
  18.         }, 3000);
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement