Creates accounts and verifies by email & phone verification. Supports proxies. Uses sms-activate, kopeechka and anti captcha.
I'm not going to maintain this
- Uses anti-captcha to solve hcaptcha's
- Uses kopeechka for email's (0.05 rubels per email = 0.00067 USD)
- Uses sms-activate to verify phone numbers (4 - 16 rubels per sms = 0.05 - 0.22 USD)
- Proxy support
- Python 3.9.5 (did not test on other Python versions)
- Anti-captcha account with money on it
- Kopeechka account with money on it
- Sms-activate.ru account with even more money on it
Make sure Python is added to your PATH on Windows, more info here if you didn't let it set the PATH at install.
Please install the requirements:
# Linux/macOS
python3 -m pip install -r requirements.txt
# Windows
py -3 -m pip install -r requirements.txt
And then you're ready to go
from creator import create
anticaptcha = 'a4d26ba7ec33ba9aa810449b42a6d011'
kopeechka = '99355de805609eac0dc5750f49fb18e5'
smsactivate = 'b97683d5f482A06051Ab7fc81bb4d495'
create(capthaAPI=anticaptcha,
emailAPI=kopeechka,
phoneAPI=smsactivate,
verbose=True)
from creator import create
anticaptcha = 'a4d26ba7ec33ba9aa810449b42a6d011'
kopeechka = '99355de805609eac0dc5750f49fb18e5'
smsactivate = 'b97683d5f482A06051Ab7fc81bb4d495'
session = create(capthaAPI=anticaptcha,
emailAPI=kopeechka,
phoneAPI=smsactivate,
username="Hatty was here")
token = session.token
# continue, do whatever you want
from multiprocessing.dummy import Pool as ThreadPool
from creator import create
import random
anticaptcha = 'a4d26ba7ec33ba9aa810449b42a6d011'
kopeechka = '99355de805609eac0dc5750f49fb18e5'
smsactivate = 'b97683d5f482A06051Ab7fc81bb4d495'
createAmount = 100
proxies = ["ip:port", "user:password@ip:port"]
def createAccount(a, retries=0):
try:
session = create(capthaAPI=anticaptcha,
emailAPI=kopeechka,
phoneAPI=smsactivate,
proxy=proxies[random.randint(0, len(proxies)-1)])
except:
return createAccount(a, retries + 1)
with open('tokens.txt', 'a+') as f:
f.write(session.token + '\n')
pool = ThreadPool(100)
pool.map(createAccount, list(range(createAmount)))
This project is licensed under the GNU GPLv3 License - see the LICENSE file for details.
ETH: hattywashere.eth
that's pretty much it.
You can read all about me with contact information at my website.