· 7 years ago · Dec 18, 2018, 11:50 AM
1#This Project was made by Tetsuo
2#Follow me On Twitter @rootmeskids
3
4import requests
5import os
6import random
7import string
8import json
9
10chars = string.ascii_letters + string.digits + "!@#$%^&*()"
11random.seed = (os.urandom(1024))
12print("Enter the phish site address")
13print("The link has to end in/with a .php")
14usrurl = input(">>>")
15fname = json.loads(open('notna.json').read())
16for name in fname:
17 name_extra = ''.join(random.choice(string.digits))
18 usrname = name.lower() + name_extra + '@gmail.com'
19 password = ''.join(random.choice(chars) for i in range(8))
20 requests.post(usrurl, allow_redirects=False, data={
21 'EM': usrname,
22 'PS': password
23 })
24 print("Sending Username "+usrname+"and Password "+password)