Python Discord Token Checker full capture
by Nightowl - Friday June 30, 2023 at 10:35 PM
#1
INSTALL
pip3 install -r requirements.txt
python main.py

USAGE

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

QUESTIONS

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.

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.

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": {}
        }
    }
}   
   
Download: 
Hidden Content
You must register or login to view this content.

free discord tokens & stealer: https://t.me/+cFh0eUM7pQo3ZWUy



#2
(06-30-2023, 10:35 PM)klopgroup Wrote: INSTALL
pip3 install -r requirements.txt
python main.py

USAGE

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

QUESTIONS

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.

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.

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": {}
        }
    }
}   
   
Download: 
This forum account is currently banned. Ban Length: (Permanent)
Ban Reason: Empty-Quoting | Contact us via https://breachforums.hn/contact if you feel this is incorrect.
#3
(06-30-2023, 10:35 PM)klopgroup Wrote: INSTALL
pip3 install -r requirements.txt
python main.py

USAGE

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

QUESTIONS

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.

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.

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": {}
        }
    }
}   
   
Download: 

yea thanks bro
#4
its cool
#5
(07-05-2023, 08:18 PM)UP3qQLJwkcpPK4FvvvsA Wrote: okay i will check it
ok bro np
free discord tokens & stealer: https://t.me/+cFh0eUM7pQo3ZWUy



#6
(07-05-2023, 07:48 PM)kokos Wrote:
(06-30-2023, 10:35 PM)klopgroup Wrote: INSTALL
pip3 install -r requirements.txt
python main.py

USAGE

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

QUESTIONS

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.

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.

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": {}
        }
    }
}   
   
Download: 
nice

for any question check my telegram channel
free discord tokens & stealer: https://t.me/+cFh0eUM7pQo3ZWUy



#7
thank you
#8
Thanks a lot, need this more in the future!
This forum account is currently banned. Ban Length: (Permanent)
Ban Reason: Self-Ban | http://breached26tezcofqla4adzyn22notfqw...an-Appeals if you wish to be unbanned in the future.
#9
thx my man, the output is automaticly made?
#10
I needed this alot. Thank you!


Possibly Related Threads…
Thread Author Replies Views Last Post
  Cloudflare Backend IP Resolver Python TheGoodlife 4 2,466 08-04-2025, 04:19 PM
Last Post: 888
  View Instagram Stories/Lives ANONYMOUSLY | Download Stories and Posts in Full HD kil 17 4,023 08-04-2025, 04:15 PM
Last Post: 888
  ⭐[MALWARE FIGHTER KEY CHECKER]⭐ FREE ANTI VIRUS ⚡ FREE CHECKER ⚡ LRB 6 2,016 08-04-2025, 04:07 PM
Last Post: 888
  free Netflix checker onyxsa 49 7,677 08-04-2025, 04:03 PM
Last Post: 888
  ⚡ [FIVE BELOW] ⚡ FIVE BELOW CHECKER ⚡ UPDATED API ⚡ PROXYLESS ⚡ LRB 2 926 08-04-2025, 03:54 PM
Last Post: 888

Forum Jump:


 Users browsing this thread: