List of supported websites
- Chess.com
- Discord (server vanity)
- Fornite
- GitHub
- Kahoot
- Lichess
- Minecraft
- Pastebin
- Pornhub
- Replit
- Roblox
- Solo.to
- Soundcloud
- Speedrun.com
- Steam
- TikTok
- Twitch
- Xbox
- YouTube (/c/ and @)
There is also support for adding your own checkers by supplying an API endpoint.
Star goals
- ⭐5 - Adding multi-threading
- ⭐7 - More advanced custom checkers
- ⭐10 - Improved speeds
- ⭐15 - 1 new checker
- ⭐20 - 1 new checker
- ⭐30 - 5 new checkers
- ⭐35 - 2 new checkers
- ⭐40 - Improved speeds
While you can use each checker individually in the checkers directory, the easiest way to use the checkers, is by using the launcher. The launcher is available in the Releases tab.
All you need is Python installed and the necessary requirements. I wrote the scripts in Python 3.10.6, so I'd recommend you install that version. However, later versions should work too.
You can easily integrate the checkers in your project, just make sure to follow the license!
Each script has a function inside of it called "run" which can be called with the necessary parameters.
Here's an example on how to integrate an example script in your project:
import checkers.example
example.run(
"words.txt", # usernames list path
"proxies.txt" # proxies path (leave empty if no proxies)
) # returns list of hits
For the run function, if you check the code, you might see a "usernames" parameters. DO NOT USE THAT PARAMETER, that is used by previous versions of the launcher, and allows for backwards compatability support. If you use that rather than the "usernames_path" parameter, instead of returning a set of all the valid usernames, it will rather return nothing and automatically download the valid usernames to a file called "hits.txt". Make what you will of this information.
You can also check 1 username at a time, here's an example:
import checkers.example
example.check(
"Example", # username
"127.0.0.1:80" # proxy (leave empty if no proxy)
) # returns the username if valid, or None if its not
As far as I know, the "custom" checker doesn't work with the individual "check" function, however the "run" function should work.
In the same directory as the launcher, add a file named proxies.txt and format it like this:
type|protocol://host:port
an example is:
http|http://[redacted]:80
http|http://[redacted]:9992
http|http://[redacted]:80
https|https://[redacted]:8080
http|http://[redacted]:8085
http|http://[redacted]:3128
In short, no.
The launcher automatically updates checkers, however some larger features such as multi-threading (support added in launcher beta 0.2) require launcher updates to use, however launcher updates are mostly QOL or bug fixes and are recommended! My goal is to make it so you can use this in any launcher version possible, with full backwards compatibility!