forked from nordbearbotdev/Torpeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspam-mail.py
112 lines (78 loc) Β· 4.37 KB
/
spam-mail.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Name: Torpeda - superfast SMS bomber for Android.
# Author: nordbearbot
# Date: 21/01/22
# Version: 0.0.1.
#
# ββββββββ ββββββ ββββββ ββββββ βββββββ ββββββ βββββ
# ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ
# ββ ββ ββ ββββββ ββββββ βββββ ββ ββ βββββββ
# ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ
# ββ ββββββ ββ ββ ββ βββββββ ββββββ ββ ββ
from os import name, system
from os.path import exists, isfile
from random import choice, randint
from threading import Thread
from time import sleep
from colorama import Fore, Style
from requests import get, post
from user_agent import generate_user_agent
from termcolor import colored
def banner():
system("cls" if name == "nt" else "clear")
print(colored( '''
βββββββββ ββββββ ββββββ ββββββ ββββββ βββββββ βββ
β βββ ββββββ ββββββ β βββββββ βββββ β ββββ βββββββββ
β ββββ ββββββ ββββββ βββ βββββ ββββββββ βββ βββββ βββ
β ββββ β βββ ββββββββββ βββββββ ββββ β ββββ ββββββββββ
ββββ β β βββββββββββ ββββββββ β βββββββββββββββ ββ ββββ
β ββ β ββββββ β ββ ββββββββ β βββ ββ β βββ β ββ ββββ
β β β ββ ββ β ββββ β β β β β β β β ββ β
β β β β β ββ β ββ β β β β β β
β β β β β β β β
β
CΠ΄Π΅Π»Π°Π½ΠΎ Π² @HackSploitt
ΠΠ²ΡΠΎΡΡ: Enigma & nordbearbot
''','magenta'))
os.system("clear")
server = raw_input ('Mail-Server Gmail/Yahoo: ')
if server == 'gmail' or server == 'Gmail':
smtp_server = 'smtp.gmail.com'
port = 587
set_server = "gmail"
elif server == 'yahoo' or server == 'Yahoo':
smtp_server = 'smtp.mail.yahoo.com'
port = 25
set_server = "yahoo"
else:
print(R + "ΠΠ¨ΠΠ¬ΠΠ - ΠΠ°Π½Π½ΡΠΉ ΡΠΊΡΠΈΠΏΡ ΡΠ°Π±ΠΎΡΠ°Π΅Ρ ΡΠΎΠ»ΡΠΊΠΎ Π΄Π»Ρ gmail ΠΈΠ»ΠΈ yahoo." + W)
sys.exit()
email_user = raw_input('ΠΠΎΡΡΠ°: ')
passwd = getpass.getpass('ΠΠ°ΡΠΎΠ»Ρ: ')
email_to = raw_input('\nTo: ')
subject = raw_input('Π¦Π΅Π»Ρ: ')
body = raw_input('Π‘ΠΎΠΎΠ±ΡΠ΅Π½ΠΈΠ΅: ')
total = input('ΠΠΎΠ»-Π²ΠΎ ΡΠΎΠΎΠ±ΡΠ΅Π½ΠΈΠΉ: ')
try:
server = smtplib.SMTP(smtp_server,port)
server.ehlo()
if set_server == "gmail":
server.starttls()
server.login(email_user,passwd)
print("\n\n\n - Π¦Π΅Π»Ρ : {} -\n".format(email_to))
for i in range(1, total+1):
msg = 'ΠΡ: ' + email_user + '\nΠ¦Π΅Π»ΠΈ: ' + subject + '\n' + body
server.sendmail(email_user,email_to,msg)
print(G + "\rΠΡΠΏΡΠ°Π²Π»Π΅Π½ΠΎ ΠΏΠΈΡΠ΅ΠΌ - {}".format(i))
sys.stdout.flush()
server.quit()
print( R + "\n\n-ΠΡΠΎΡΠ΅ΡΡ ΠΏΡΠ΅ΠΊΡΠ°ΡΠ΅Π½-" + W)
except KeyboardInterrupt:
print(R + "\nΠΡΠΈΠ±ΠΊΠ° - ΠΠ°Π±ΠΎΡ ΠΏΡΠ΅ΡΠ²Π°Π½ + W)
sys.exit()
except smtplib.SMTPAuthenticationError:
print( R + "\nΠΡΠΈΠ±ΠΊΠ° - ΠΡΠΈΠ±ΠΊΠ° Π°Π²ΡΠΎΡΠΈΠ·Π°ΡΠΈΠΈ. ΠΡΠΎΠ²Π΅ΡΡΡΠ΅ ΠΏΡΠ°Π²ΠΈΠ»ΡΠ½ΠΎΡΡΡ Π²Π²Π΅Π΄Π΅Π½Π½ΡΡ
Π΄Π°Π½Π½ΡΡ
ΠΎΡ Π°ΠΊΠΊΠ°ΡΠ½ΡΠ°?" + W)
sys.exit()
except smtplib.SMTPAuthenticationError:
sys.exit()