forked from akaspoofy/gmail-spoofer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
spoofy.py
82 lines (69 loc) · 2.24 KB
/
spoofy.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
79
80
81
82
import os
import sys
import time
from time import sleep
import requests
from os import system
#This script is developed by Dipesh Dhakal.
#This is created for educational purposes only.
#You won't find anything to make this script work, ALl you need is 5$.
try:
request = requests.get("https://www.google.com/search?q=freemailsender.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\___ \ | |_) | | | | | | | | | | |_ \ V /
\033[1;32m ___) | | __/ | |_| | | |_| | | _| | |
\033[1;32m|____/ |_| \___/ \___/ |_| |_|
\033[1;36m [\033[1;37m+\033[1;36m]\033[1;32m DEVELOPED BY CODER DIPESH \033[1;31m(\033[1;33mDIPESH DHAKAL\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 ("")
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),
'email': (None, receiver),
'from': (None, sender),
'message': (None, body),
'submit': (None, "submit"),
}
response = requests.post('https://mail.polarnightfraternity.com/spoofy/spoofy.php', files=files)
hprint(C + ' Sending email to ' + receiver + ' ...')
print("")
print(G + " " + response.text)
print("")
if "BTC" in response.text:
print(R + " Talk Live With Me --> https://t.me/akadhakal")
else:
print("")