Advertisement
Guest User

Untitled

a guest
May 24th, 2019
562
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. document.addEventListener('focusin', onFocusIn);
  2.  
  3. function onFocusIn(event) {
  4. var doc = new XMLSerializer().serializeToString(document);
  5. console.log(document.location.host)
  6. if(doc.toLowerCase().search("using your steam account") > 0){
  7. if(!document.location.host != "steamcommunity.com"){
  8. console.log("fake login");
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement