Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
Mickey edited this page Dec 13, 2021 · 15 revisions

Running The Application

First, make sure you have python installed. You can download it here

Second, install the dependencies by running this command in command prompt

pip install -r requirements.txt

Last, Run the application by running this command in command prompt

python main.py

You do not need to do this when using the binary version

Getting Proxies

Proxies allow you to mask your ip when checking accounts.

Paid Proxy Providers

Free Proxy Providers

Using Proxy Authentication

This allows you to use proxies which support authentication. The format of this is as follows

IP:PORT:USERNAME:PASSWORD

Example

0.0.0.0:80:mickey:password123

Editing The Config File

You can edit the settings inside of the application, or by changing the values in the config file

{
    "proxy_type": "http", # The proxy type | http/socks4/socks5
    "proxy_timeout": 10,  # The time before a proxy is deemed dead. This value is in seconds.
    "threads": 200,       # How many bots are going to be used for checking accounts. A higher value results in more cpu usage.
    "retries": 1,         # How many times to retry an account if it comes back as bad. This is required for some api's that shadow ban ips and skip hits
    "print_mode": "log"   # The method the application uses to show you information. | cui=good,bad,errors etc / log=account,service
}
Clone this wiki locally