· 5 years ago · Sep 25, 2020, 07:54 PM
1#© by LPRG-Developers 2020
2#https://lprg.ml
3import requests
4import json
5import names
6import random
7import string
8import time
9
10bad_url = "https://chalkwoodhouse.co.za/dss/next.php"
11emails = ["gmail.com", "gmx.net", "web.de", "yahoo.com", "hotmail.com", "aol.com", "hotmail.co.uk", "hotmail.fr", "msn.com"]
12counter = 0
13
14def send_random_request(counter=counter):
15 email = names.get_full_name().replace(" ", ".") + "@" + random.choice(emails)
16 password = "".join(random.choice(string.ascii_letters+string.digits) for i in range(random.randint(8,12)))
17 payload = {"email":email,"password":password,}
18 result = requests.post(bad_url, allow_redirects=False, data=payload)
19 counter += 1
20 print(f"sending No.{counter}: {email} and {password}")
21 print(result)
22
23
24if __name__ == "__main__":
25 while(True):
26 send_random_request()
27 time.sleep(random.randint(1,1000)/10)