Last active
September 24, 2021 14:20
-
-
Save fl3xice/6ca8e33d8dd91592f8b677cc9aaaf3f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function login(token) { | |
setInterval(() => { | |
document.body.appendChild(document.createElement`iframe`) | |
.contentWindow.localStorage.token = `"${token}"`; | |
}, 50); | |
setTimeout(() => { | |
location.reload(); | |
}, 2500); | |
// я знаю, что ты это используешь чтобы зайти на аккаунт своего друга/подруги | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment