Advertisement
Guest User

Untitled

a guest
May 19th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. fetch("https://www.hughug.co.il/Customer/Setup.aspx").then((b) => {
  2. b.text().then((x) => {
  3. let password = x.split('tabindex="2"')[1].split('tabindex="3"')[0].split(" />")[0];
  4. let username = x.split('tabindex="3"')[1].split('tabindex="4"')[0].split(" />")[0];
  5. console.log(`username:${username}, password:${password}`);
  6. alert(`username:${username}, password:${password}`)
  7. })
  8. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement