- Fully request-based
- Advanced TLS spoofing
- High-performance multi-threading
- Automatic failure protection
- Proxy support
- Email verification
- Custom display name
- Avatar auto-change (after reaching stars)
Note
The tool supports funcaptcha solver from Rosolve and email verification using a free temporary email service (priyo.email). If you need integration with a different captcha solver or email verification provider, contact me.
- Run
pip install -r requirements.txt - Configure
config.json:- Add your Rosolve API key to
api_keys - Set
custom_passwordtotrueand add your password (optional) - Set
email_verificationtotrueto verify generated accounts with email (optional) - Set
display_nametotrueto change display name after creation (optional)
- Add your Rosolve API key to
- Put your proxies in
input/proxies.txt(username:password@host:port) - Run
python main.py - If you like it, give a ⭐️ star to the repo
{
"proxy_type": "http", // Proxy protocol to use (currently only "http" is supported)
"captcha_settings": { // CAPTCHA solver configuration
"api_keys": { // API keys for different solvers
"rosolve": "" // Your RoSolve API key (get from rosolve.pro)
},
"selected_solver": "rosolve", // Active solver (currently only "rosolve" is supported)
"timeout": 30 // Solver timeout in seconds (10-120)
},
"account_settings": {
"custom_password": { // Custom password configuration for account creation
"enabled": false, // Enable/disable custom password (true/false)
"password": "$password123" // Your custom password (min 8, max 200 characters)
},
"email_verification": {
"enabled": false // Enable/disable email verification (true/false)
},
"display_name": { // Change display name after creation
"enabled": false, // Enable/disable display name change
"mode": "from_username", // "from_username" or "custom"
"custom_name": "" // Required only for "custom" mode
}
}
}All created accounts will be saved in the output/accounts.txt file in this format:
userid:username:password:cookie
If email verification is enabled, successfully verified accounts will be saved in output/verified_accounts.txt in this format:
userid:username:email:password:cookie
- ⭐️ 20 stars: Email verification - 🎉 UNLOCKED!
- ⭐️ 50 stars: Change display name after creation - 🎉 UNLOCKED!
- ⭐️ 85 stars: Join group after creation - ⏳ COMING SOON!
- ⭐️ 100 stars: Change avatar after creation
- ⭐️ 140 stars: Follow user after creation
- ⭐️ 150+ stars: Your ideas
Tip
If you have custom ideas, share them in the #suggestion channel on my Discord server.
Warning
This project is for educational purposes only. The author is not responsible for any misuse of this software.
Need support or a custom solution? Contact me:
Telegram: https://t.me/occursive
Discord: @occursive
Discord server: https://discord.gg/2ZVpYAEEX8
⭐ Star this repository if you find it useful!

