Added extra email domain names to use.

This commit is contained in:
Ray 2022-08-19 23:06:45 +10:00 committed by GitHub
parent b1c95eb775
commit 34659215f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -1,3 +1,4 @@
#import required packages
import os import os
import requests import requests
import os import os
@ -8,9 +9,9 @@ import json
chars = string.ascii_letters + string.digits + '!@#$%^&*()' chars = string.ascii_letters + string.digits + '!@#$%^&*()'
random.seed = (os.urandom(1024)) random.seed = (os.urandom(1024))
url = 'https://applicationhypetest.cf/login/' url = 'PLACE LOGIN BOX URL HERE'
names = open('C:/Users/Rayyan/OneDrive/Desktop/temp/nameslist.json') names = open('YOURUSERDIR/nameslist.json') #Enter location of where you downloaded the .json file
data = json.load(names) data = json.load(names)
for name in data: for name in data:
@ -19,11 +20,11 @@ for name in data:
#email_domain = ['@gmail.com','@yahoo.com''@outlook.com','@live.com','@icloud.com','@aol.com'] #email_domain = ['@gmail.com','@yahoo.com''@outlook.com','@live.com','@icloud.com','@aol.com']
username = name + name_extra + '@gmail.com' username = name + name_extra + '@gmail.com' or '@yahoo.com' or '@outlook.com' or '@live.com' or '@icloud.com' or '@aol.com'
print(username) print(username)
password = ''.join(random.choice(chars) for i in range(8)) password = ''.join(random.choice(chars) for i in range(8))
print(password) print(password)
requests.post(url, allow_redirects=False, data={ requests.post(url, allow_redirects=False, data={
'username': username, 'INSERT USERNAME VARIABLE': username,
'password': password 'INSERT PASSWORD VARIABLE': password
}) })