Skip to content

R3nzTheCodeGOD/Discord-Token-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Discord License Issues

Discord Token Generator

How does it work

A discord token basically consists of 3 parts.

  • UserID
  • Token Creation Time
  • Random

The first of these, the userid part, can be simply created and you will find the first head of a user's token, but finding the rest is pure luck.

let's calculate

Let's do some math for this and find out in how many tries we will find the user token for sure.

  • With this generator we always know the first side
  • the middle part must be 5 characters and consist of 62 different characters = 625
  • and we come to the last part, this one consists of 27 characters and 64 different characters = 6427
print((62 ** 5) + (64 ** 27))
>>> Output: 5846006549323611672814739330865132078624646304736

here is the result

5,846,006,549,323,611,672,814,739,330,865,132,078,624,646,304,736

I hope you understand what I mean. Generators are not as cool as you think, on the contrary, they are unnecessary, but if you still want to try, read the usage section below.

Usage

First, clone the repository and then go into the main.py file and configure the id part and the thread part according to you, now it's ready to run, run it by typing py main.py

Note: Install libraries that are not installed using pip.