KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
Discord-Token-Generator
★ 16
Open GitHub ↗
Discord user token generator
Download README (.md)
Explore Similar Repositories
Beep-Music-Converter
:
Unraid container to convert mp3 or wav to PC beep speaker music
UX0toSD
:
A quick and easy way of migrating from the Sony memory to an SD2Vita adaptor
Nova
:
✨ Awesome polyglot framework for building distributed discord bots built on cloud native technologies, rust and containers.
laravel-vapor-multi-region-deploy
:
An artisan command to assist deploying your Laravel Vapor app to multiple AWS regions
skybox-image
:
存储天空盒图片。
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Discord-Token-Generator
?
Download (.md)
<div align="center" > [](https://en.wikipedia.org/wiki/Python_(programming_language)) [](https://discord.com/) [](https://raw.githubusercontent.com/R3nzTheCodeGOD/Discord-Token-Generator/main/LICENSE) [](https://github.com/R3nzTheCodeGOD/R3nzCS/issues) # Discord Token Generator # How does it work </div> <img width=550 align="right" src="https://images-ext-1.discordapp.net/external/daqtkfm2MQZAiBpqC7jNZ6ZCKKpJ6e9MaSfCHcbDDFA/https/i.imgur.com/7WdehGn.png?width=992&height=488"> 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 = **62<sup>5</sup>** * and we come to the last part, this one consists of 27 characters and 64 different characters = **64<sup>27</sup>** ```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.