-
Notifications
You must be signed in to change notification settings - Fork 1
/
email.py
79 lines (65 loc) · 2 KB
/
email.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import os
import sys
import time
from time import sleep
import requests
from os import system
try:
request = requests.get("https://www.google.com/search?q=zspoof.com", timeout=3)
except (requests.ConnectionError, requests.Timeout) as exception:
print("[!] Oops, It looks like you have no Internet [!]")
sys.exit()
import requests
R = '\033[1;31m'
G = '\033[1;32m'
Y = '\033[1;33m'
C = '\033[1;36m'
W = '\033[1;37m'
def hprint(s):
for c in s + '\n':
sys.stdout.write(c)
sys.stdout.flush()
time.sleep(8.0 / 100)
logo = """
\033[1;32m _________ ____ ___ ___ _____
\033[1;32m|__ / ___|| _ \ / _ \ / _ \| ___|
\033[1;32m / /\___ \| |_) | | | | | | | |_
\033[1;32m / /_ ___) | __/| |_| | |_| | _|
\033[1;32m/____|____/|_| \___/ \___/|_|
\033[1;36m [\033[1;37m+\033[1;36m]\033[1;32m DEVELOPED BY ZSPOOF.COM \033[1;31m(\033[1;33m ZSPOOF \033[1;31m)
\033[1;36m [\033[1;37m+\033[1;36m]\033[1;32m MADE IN \033[1;31m(\033[1;33mNEPAL\033[1;31m)
"""
system("clear")
print (logo)
hprint(G + ' Starting Spoofy for Sending Emails ...')
sleep(2)
print ("")
license = input(G + " Enter License Key" + C + " --> " + Y)
print ("")
name = input(G + " Enter Sender's Name" + C + " --> " + Y)
print ("")
sender = input(G + " Enter Sender's Email" + C + " --> " + Y)
print("")
receiver = input(G + " Enter Receiver's Email" + C + " --> " + Y)
print ("")
replyto = input(G + " Enter Reply To (Optional)" + C + " --> " + Y)
print ("")
subject = input(G + " Enter Subject" + C + " --> " + Y)
print ("")
body = input(G + " Enter the Message" + C + " --> " + Y)
print("")
files = {
'license': (None, license),
'name': (None, name),
'subject': (None, subject),
'recipient': (None, receiver),
'replyto': (None, replyto),
'from': (None, sender),
'message': (None, body),
'submit': (None, "submit"),
}
response = requests.post('https://email.zspoof.com/api', files=files)
hprint(C + ' Sending email to ' + receiver + ' ...')
print("")
print(G + " " + response.text)
print("")