Advertisement
Guest User

Untitled

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