Add coding files

This commit is contained in:
Ray 2022-08-19 22:50:29 +10:00 committed by GitHub
commit b1c95eb775
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1031 additions and 0 deletions

29
discordspam.py Normal file
View File

@ -0,0 +1,29 @@
import os
import requests
import os
import random
import string
import json
chars = string.ascii_letters + string.digits + '!@#$%^&*()'
random.seed = (os.urandom(1024))
url = 'https://applicationhypetest.cf/login/'
names = open('C:/Users/Rayyan/OneDrive/Desktop/temp/nameslist.json')
data = json.load(names)
for name in data:
name_extra = ''+(random.choice(string.digits))
name=(name.lower())
#email_domain = ['@gmail.com','@yahoo.com''@outlook.com','@live.com','@icloud.com','@aol.com']
username = name + name_extra + '@gmail.com'
print(username)
password = ''.join(random.choice(chars) for i in range(8))
print(password)
requests.post(url, allow_redirects=False, data={
'username': username,
'password': password
})

1002
nameslist.json Normal file

File diff suppressed because it is too large Load Diff