Python script that automatically create Outlook account
- Automated Account Creation
- Auto captcha solve (funcaptcha)
- Checking if email is already taken before creating account
- Randomly generated email and password
- HTTP proxy support
- Error Handling
- Clone outlook-account-creator repository from github:
git clone https://github.com/Skuxblan/Outlook-account-creator.git
- Move to project directory:
cd outlook-account-creator
- Install the required dependencies using pip:
pip install -r requirements.txt
- Open config.json file. It should be looking like that:
{
"mode": 0,
"proxy_host": "",
"proxy_port": "",
"username": "",
"password": "",
"api_key": "token_here"
}
- Replace
token_here
with actual value. You should login and get free token on their website
Note - make sure you have enough credits. You can renew your balance after some time.
py main.py
Default mode is 0
which means you won't use any proxy. If you want to use HTTP proxy with that tool you have to set it in the config file. Additionaly you have to change mode value to one of the following:
0
value - no proxy1
value - proxy without auth2
value - proxy with login and password auth
- This script is dedicated for chrome browser
- Make sure you have added chromedriver to your path to avoid issues
- I have noticed recently Microsoft requires a lot of captcha images to be solved. Something is up with detecting chromedriver. I've tried to use fingerprint solution, but the only one which is working good for me is not able to add extension to browser, so the process can't be fully autoomated.
- If you noticed script detects SMS verification you should change your ip with proxy or wait some time.
- Nopecha sometimes is not able to do captcha correctly, especially while number of images to be processed is above norm (up to 5) you should consider changing your proxy or take a break then. If you want to check what's going on disable headless mode in
main.py
file.
Contributions are always welcome! If you have ideas for new features or you have any troubles feel free to opening issues or create pull requests.
This script is provided for educational and informational purposes only. It was created just for fun. The author is not responsible for any misuse or violation of terms of service resulting from the use of this script. Always stick to terms of service of website you're using.