Solebox has been pretty strict with their security. You'll get a lot of 403 and Cloudfare errors. That's fine, just let it run or run it a couple of times. (See down below for an example)
This Python script creates Solebox accounts and adds a shipping address to them.
Use of proxies is highly recommended.
DM me on Discord rtuna#4321 if you need any help setting this up. BEFORE DMing ME, READ THROUGH THIS FILE
-
Make sure you have Python (preferably 3.8.0) installed
-
download & unzip this the zip you donwloaded, open your CMD/Terminal and
cd
to this folder. -
run
pip install -r requirements.txt
-
Add your info into
userdata.json
-
(ADVANCED) Feel free to edit this in the code:
jigFirstAndLast = False #or True jigFirst = False #or True jigPhone = True #or False jigFirstLineAddress = True #or False jigSecondLineAddress = True #or False
-
The script closes itself after you input the number of accounts you want to generate? YOU DIDN'T FOLLOW THE INSTURCTIONS AND YOU'RE RUNNING IT THE WRONG WAY, FOLLOW THESE STEPS
-
[FATAL ERROR] -> "Some dependencies are not installed."
= you don't have any of the dependencies installed. Make sure you did everything in Before running. If that doesn't fix it, try running:- on Windows
py -m pip install -r requirements.txt
- on Mac
python3 -m pip install -r requirements.txt
- on Windows
-
'pip' is not recognized as an internal or external command, operable program or batch file.
or anything related to this -> either you don't have Python in Path (setx PATH "%PATH%;C:\Python38\Scripts"
- ONLY IF YOU'RE ON WINDOWS). If that doesn't help, try running:- on Windows
py -m pip install -r requirements.txt
- on Mac
python3 -m pip install -r requirements.txt
- on Windows
-
I keep getting
keyerror firstname
= you replaced something you weren't supposed to replace in theuserdata.json
file. Make sure it's filled in like this:
{
"firstName": "John",
"lastName": "Doe",
"phoneNum": "123456789",
"catchall": "catchall.com",
"passwd": "myPassword",
"addyFirstLine": "Oxford Streed",
"houseNum": "33",
"addySecondLine": "apt 6",
"zipcode": "FA6 S2C",
"city": "London",
"country_name": "United Kingdom",
"stateUS": "",
"webhook_url" : "https://discordapp.com/api/webhooks/..."
}
open your terminal, change your directory to this folder/repo and run:
-
on Mac:
python3 soleboxaccgen.py
-
on Widnows:
py soleboxaccgen.py
- If everything goes smoothly, accounts should be in
valid_emails.txt
as well as if you have a webhook setup, you'll get a Discord notification. - if an error occurs when trying to update a shipping address, they'll be in
no_ship_addy_emails.txt
and you'll need to update shipping address manually (or just gen new ones 😝)
This is how it should look like when you run it:
- If you don't have a catchall, feel free to leave the catchall field blank but you won't get confirmation emails (it will just create an account with a random gmail)
- What is
cd
and how do I use it?- From wikipedia: "the
cd
command is a command-line shell command used to change the current working directory" - so what you need to do is change your working directory, to the Folder (or directory) of this script.
- From wikipedia: "the
- How do I install Python?
- I am getting
[ERROR] -> Bad request. Satus code 403
or[ERROR] -> Encountered CloudFare...
all the time, what do I do?- Keep trying and or switch proxies. This also happens frequently when the site is under a heavy load (When a restock/drop happens etc.)