https://github.com/r3nzthecodegod/discord-token-generator
Discord user token generator
https://github.com/r3nzthecodegod/discord-token-generator
auth-token discord discord-token generator token
Last synced: 9 months ago
JSON representation
Discord user token generator
- Host: GitHub
- URL: https://github.com/r3nzthecodegod/discord-token-generator
- Owner: R3nzTheCodeGOD
- License: mit
- Created: 2021-07-29T23:40:00.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-29T23:49:01.000Z (almost 5 years ago)
- Last Synced: 2025-05-02T18:53:24.888Z (about 1 year ago)
- Topics: auth-token, discord, discord-token, generator, token
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 15
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://en.wikipedia.org/wiki/Python_(programming_language))
[](https://discord.com/)
[](LICENSE)
[](https://github.com/R3nzTheCodeGOD/R3nzCS/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**
```py
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.