All Projects â†’ GuFFy12 â†’ Discord-Token-Checker

GuFFy12 / Discord-Token-Checker

Licence: MIT license
🔥Fastest Parallel Request Double-Check Discord Token Checker🔥 Parse discord tokens from any file and directory.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Discord-Token-Checker

tokenstealer
No description or website provided.
Stars: ✭ 16 (-55.56%)
Mutual labels:  token, discord-token
Get-Discord-Token
Automatically get discord token from browser.
Stars: ✭ 46 (+27.78%)
Mutual labels:  token, discord-token
crowntool
Multi Tool with many functions coming
Stars: ✭ 55 (+52.78%)
Mutual labels:  checker, token
Querly
Query Method Calls from Ruby Programs
Stars: ✭ 226 (+527.78%)
Mutual labels:  checker
action-my-broken-link-checker
A GitHub Action for checking broken links
Stars: ✭ 32 (-11.11%)
Mutual labels:  checker
colonySale
Colony Token and Crowdsale Contracts
Stars: ✭ 27 (-25%)
Mutual labels:  token
health-check
Health Check is an application that provides an API to check the health health_check of some parts and some utilities like ping requests. This application can works as standalone or included in a Django project.
Stars: ✭ 31 (-13.89%)
Mutual labels:  checker
Forbidden Apis
Policeman's Forbidden API Checker
Stars: ✭ 216 (+500%)
Mutual labels:  checker
yubikey
PHP library to interface with the Yubikey REST API
Stars: ✭ 68 (+88.89%)
Mutual labels:  token
YANG
🔥 The most efficient, open-source, and unlimited discord nitro generator & checker. 🚀
Stars: ✭ 215 (+497.22%)
Mutual labels:  checker
T-REX
T-REX is a suite of smart contracts implementing the EIP 3643 and developed by Tokeny to manage and transfer financial assets on the Ethereum blockchain
Stars: ✭ 79 (+119.44%)
Mutual labels:  token
go-jwt-issuer
Microservice generates the pair of JSON web tokens - access-token and refresh-token are signed by user identifier.
Stars: ✭ 30 (-16.67%)
Mutual labels:  token
firebase id token
A Ruby gem to verify the signature of Firebase ID Tokens.
Stars: ✭ 138 (+283.33%)
Mutual labels:  token
Git-Secret
Go scripts for finding sensitive data like API key / some keywords in the github repository
Stars: ✭ 156 (+333.33%)
Mutual labels:  token
node-w3c-validator
Wrapper for The Nu Html Checker (v.Nu)
Stars: ✭ 28 (-22.22%)
Mutual labels:  checker
Neomake
Asynchronous linting and make framework for Neovim/Vim
Stars: ✭ 2,512 (+6877.78%)
Mutual labels:  checker
hedera-hts-demo
This is a demonstration UI for the Hedera Token Service. Written in JavaScript and Vue.JS
Stars: ✭ 66 (+83.33%)
Mutual labels:  token
token-cli
Command line utility for interacting with OAuth2 infrastructure to generate tokens
Stars: ✭ 19 (-47.22%)
Mutual labels:  token
flycheck-languagetool
Flycheck support for LanguageTool
Stars: ✭ 44 (+22.22%)
Mutual labels:  checker
verify-apple-id-token
Verify the Apple id token on the server side.
Stars: ✭ 49 (+36.11%)
Mutual labels:  token

The project still work and currently being rewritten for react and nest js. I think to finish within ~1.5 months. Stay in touch!

Discord-Token-Checker

Discord Token Checker Telegram Bot: @Discord_Token_Checker_bot

Discord Token Checker Site: Discord-Token-Checker

INSTALL

pip3 install -r requirements.txt
python main.py

USAGE

  1. Enter token. Accept: input text, any file (accept unparsed logs), folder (recursive scan files with tokens).
  2. This program parses token with complex algorithms (check QUESTIONS for more info).
  3. Then your tokens, check for validation using parallel request with highest speed.
  4. In the output you get text files with tokens and json_data file which contain all tokens data .

VIDEOS

CLICK

CLICK

QUESTIONS

  1. Q: Could there be bugs in the code?

    A: Absolutely not. All methods used in the checker have been tested 1000 times by me, and the results have been verified with other checkers, including synchronous ones.

  2. Q: Why is the sum of valid + unverified + invalid tokens less than the sum of parsed tokens?

    A: The checker records all id tokens. If the new token contains an id from the list of verified ones, it is removed. Don't worry if one token becomes invalid another token with the same id too.

  3. Q: Why do I have 1000 tokens in the file, but the parser found only 580?

    A: The code uses an advanced token parser. The fact is that ordinary parsers check only the token pattern, but it also needs to check headers. (More info: https://jwt.io/introduction) In short, there are tokens that were created by some kind of token generator. They contain a header. If you decrypt it (base64), then for natural discord tokens it represents json value, while for generated ones it will be different. Check it out for yourself: https://jwt.io/#debugger-io.

OUTPUT

Standart output with valid, invalid, etc txt files.

Json output:

{
    "tokensInfo": {
        "valid": [],
        "nitro": [],
        "payment": [],
        "phone": [],
        "unverified": [],
        "invalid": [],
        "parsedTokens": []
    },
    "tokensData": {
        "TOKEN": {
            "status": "valid || unverified || invalid",
            "me": {},
            "payment_sources": {}
        }
    }
}        

Changelog 2

After this amount of time, I'm ready to write a huge changelog for the project:

  1. Added proxies to the checker, which increased the speed by n-times (depends on how many proxies are active on the server). I had to try to integrate them into the already complex request code.
  2. Updated regexp for new tokens. Regarding this, a lot of settings have been moved to a backend to ensure stable operation of all versions. So, if anything, if the checker output is updated, you will also have it updated on the backend.
  3. Unfortunately, I did not manage to make a site with a token checker. While there is not enough experience. BUT I'M TRYING TO FIX IT! Well, the fact that the site with the beta token checker began to block Google as a fraudulent site also began to dismoral me. After writing Google, everything worked, but not for long. :sad-trombone:
  4. I had to discard such modules as nitroChecker, nitroPurchaser, info. They are hard to maintain code and I don't think they will be in demand.
  5. An early update of the telegram bot is possible! Follow the news!
  6. Fix api, now it looks not so clumsy.

Changelog 1

Firstly, now the tokens data is processed on a remote server. This is due to the fact that I have been writing a telegram bot for checking tokens for a long time and I did not want to rewrite the backend for python.

In this regard, the speed increased from 1 token per second to 40. I achieved this with the help of parallel requests and proxies, it was difficult to implement in python. Also, when I finish the nuker, it will probably be the fastest, since the 429 error handler with limit checking will be used.

As soon as I complete the backend (checker, info, idTracker, webhookSpammer, nitroBuyer, serverNuker, userNuker, messageSearcher) I will publish it in the public.

Since 1 more request is needed for the final verification of tokens, then you get the payment sources as a side to discord.gg/users/@me. Also due to the fact that you send tokens to the server, to avoid spam, there are one request per minute otherwise 429 error.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].