-
Notifications
You must be signed in to change notification settings - Fork 1
/
Main.py
executable file
·449 lines (339 loc) · 12.2 KB
/
Main.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Variable that appears in the main menu as "popup" message
autoguipopup = ""
# Sets the popup variable if the module is absent
try:
import pyautogui
except ImportError:
print "[-] Import error: pyautogui."
print "Maybe some dependencies are missing: https://github.com/asweigart/pyautogui"
autoguipopup = " <<< [-] Missing pyautogui module"
raw_input("Press any key to continue...")
try:
import readline
# Add directory auto completion
readline.parse_and_bind("tab: complete")
except ImportError as error:
pass
try:
import sys
import os
import time
from src.EmailFunctions import *
from src.SkypeFunctions import *
except ImportError as error:
print "[-] Import error: " + str(error)
raw_input("Press any key to continue...")
sys.exit(1)
__author__ = 'Qubasa'
# Get os specific terminal command
if sys.platform.startswith('win'):
clearCommand = 'cls'
else:
clearCommand = 'clear'
# Check if variable is empty
def Empty(value):
if value == "":
raise ValueError("The Variable is empty.")
# Main gui where the spam method gets selected
def MainMenu():
os.system(clearCommand)
print '''
[*] ULTIMATE SPAMMER 2.0 [*]
.-------.
_|~~ ~~ |_
=(_|_______|_)=
|:::::::::|
|:::::::[]|
|o=======.|
`"""""""""`
Creator: Qubasa
-------------------------------
1) Skype automated typing ''' + autoguipopup + '''
2) Clear your skype chat
3) Email spammer
4) Generic spammer ''' + autoguipopup + '''
99) Quit
'''
try:
choice = raw_input('>> ')
Exec_Menu(choice)
except KeyboardInterrupt:
os.system(clearCommand)
DoExitMenu()
def AutoTypeTextMenu():
# If module pyautogui is not installed function exits
if autoguipopup != "":
print "[-] Missing module: pyautogui."
raw_input("Press any key to continue...")
menu_actions['main_menu']()
print """
##################################################
# NOTE: #
# #
# To abort the spammer move your cursor #
# to the upper left corner. #
# #
##################################################
"""
try:
# Start Skype and print the friendlist
InitSkype()
friendlist = GetFriends()
FriendMenu(friendlist)
# Get user input
while True:
try:
print 'Target number:'
target = raw_input('>> ')
target = int(target)
print 'Your message to deliver:'
msg = raw_input('>> ')
Empty(msg)
print 'How many times: '
quantity = raw_input('>> ')
quantity = int(quantity)
print
break
except ValueError:
print
print '[-] Invalid input please try again!'
print
# Execute the spam function
AutoTypeText(friendlist, target, msg, quantity)
print "[+] Successfully send " + str(quantity) + " messages!"
# EXCEPTION HANDLING -------------------------------------------------------------------
except Skype4Py.SkypeError:
print "[-] Skype raised an unexpected problem, please try again."
except Skype4Py.SkypeAPIError:
print "[-] Connection issues with skype. Is this program whitelisted ?"
except KeyboardInterrupt:
print "[+] Aborted program."
except pyautogui.FailSafeException:
print "[+] Aborted program."
except Exception as er:
print "[-] An unexpected error was raised: " + str(er)
finally:
raw_input("Press any key to continue...")
menu_actions['main_menu']()
def ClearChatMenu():
try:
# Start Skype
InitSkype()
# Get user input
choice = raw_input("Are you sure to delete ALL history ?[y/n]")
# Clear chat
if choice == "y":
ClearChat()
print "[+] Done."
# EXCEPTION HANDLING -------------------------------------------------------------------
except Skype4Py.SkypeError:
print "[-] Skype raised an unexpected problem, please try again."
except Skype4Py.SkypeAPIError:
print "[-] Connection issues with skype. Is this program whitelisted ?"
except Exception as er:
print "[-] An unexpected error was raised: " + str(er)
finally:
raw_input("Press any key to continue...")
menu_actions['main_menu']()
def DoExitMenu():
try:
# If skype is running ask if to quit process
if skype.Client.IsRunning:
# Get user input
choice = raw_input("Do you wan to close skype ?[y/n]")
# Quit skype and programm
if choice == "y" or choice == "Y" or choice == "yes" or choice == "Yes":
skype.Client.Shutdown()
# WARNING: Do not use finally after an exit function
# because the exception, SystemExit, then doesnt have any impact on the programm
# and it doesnt quit.
sys.exit()
# EXCEPTION HANDLING -------------------------------------------------------------------
except KeyboardInterrupt:
print '[+] Aborted program.'
raw_input("Press any key to continue...")
menu_actions['main_menu']()
except Exception as er:
print "[-] An unexpected error was raised: " + str(er)
raw_input("Press any key to continue...")
menu_actions['main_menu']()
def Exec_Menu(choice):
# Clear the console
os.system(clearCommand)
# If empty input immediately go back to main menu
if choice == '':
menu_actions['main_menu']()
else:
# Execute selected function out of dictionary
try:
menu_actions[choice]()
# If given input isnt in dictionary
except KeyError:
print '[-] Invalid selection, please try again.'
time.sleep(1)
menu_actions['main_menu']()
def FriendMenu(friendlist):
# Print a list out of all skype friends
for index in friendlist:
if friendlist[index][2] == '':
x = 0
else:
x = 2
print str(index) + ') ' + friendlist[index][x] + ' : ' + friendlist[index][1]
print
def EmailSpammerMenu():
choice = 0
# server_dictionary[index][name][dnsname][port]
server_dictionary = {
1: ['Gmail', 'smtp.gmail.com', 587],
2: ['Gmx', 'mail.gmx.net', 465],
3: ['Icloudmail', 'smtp.mail.me.com', 587],
4: ['Mail.de', 'smtp.mail.de', 587],
5: ['Outlook', 'smtp-mail.outlook.com', 587],
6: ['Yahoomail', 'smtp.mail.yahoo.com', 465],
7: ['Web.de', 'smtp.web.de', 587],
8: ['Sxmail', 'smtp.sxmail.de', 587]
}
try:
# Prints an enumbered list of all supported mail server
for index in range(len(server_dictionary)):
print str(index + 1) + ") " + server_dictionary[index + 1][0]
print
# Get user input
while True:
try:
print "Choose server:"
choice = raw_input(">> ")
print
choice = int(choice)
server = server_dictionary[choice][1]
port = server_dictionary[choice][2]
break
except ValueError:
print
print '[-] Invalid input please try again!'
print
except KeyError:
print
print '[-] Invalid selection please try again!'
print
# Get more user input
while True:
try:
print 'Your Email:'
username = raw_input('>> ')
Empty(username)
print 'Your Password:'
password = raw_input('>> ')
Empty(password)
print 'Target email:'
targetemail = raw_input('>> ')
Empty(targetemail)
print 'Who send this email (From:) ?'
fromemail = raw_input('>> ')
Empty(fromemail)
print 'Subject of this email:'
subject = raw_input('>> ')
Empty(subject)
print 'Your message to deliver:'
msg = raw_input('>> ')
Empty(msg)
print 'How many times: '
quantity = raw_input('>> ')
quantity = int(quantity)
print
break
except ValueError:
print
print '[-] Invalid input please try again!'
print
# Execute spamming function
EmailSpammer(server, port, username, password, targetemail, fromemail, subject, msg, quantity)
print '[+] Sucessfully send ' + str(quantity) + " messages to " + targetemail + "."
# EXCEPTION HANDLING -------------------------------------------------------------------
except smtplib.SMTPAuthenticationError:
if server_dictionary[choice][0] == "Gmail":
print "In Gmail you have to whitelist apps connecting to your account:"
print "https://www.google.com/settings/security/lesssecureapps"
else:
print "[-] Log in credentials are wrong or your email security settings are kicking in."
except smtplib.SMTPConnectError:
print "[-] Couldn't connect to server."
except smtplib.SMTPRecipientsRefused:
print "[-] Target doesnt exist."
except Exception as er:
print "[-] An unexpected error was raised: " + str(er)
finally:
raw_input("Press any key to continue...")
menu_actions['main_menu']()
def GenericSpammerMenu():
# If module pyautogui is not installed function exits
if autoguipopup != "":
print "[-] Missing module: pyautogui"
raw_input("Press any key to continue...")
menu_actions['main_menu']()
try:
# Get user input
while True:
try:
print 'Your message to deliver:'
msg = raw_input('>> ')
Empty(msg)
print 'How many times: '
quantity = raw_input('>> ')
quantity = int(quantity)
print
break
except ValueError:
print
print '[-] Invalid input please try again!'
print
print """
##################################################
# NOTE: #
# #
# To abort the programm move your cursor #
# to the upper left corner. #
# #
##################################################
"""
print "Please focus your cursor in the targeted chat window"
raw_input("Press enter to start spamming in 5 seconds...")
print "Start in:"
print 5
time.sleep(1)
print 4
time.sleep(1)
print 3
time.sleep(1)
print 2
time.sleep(1)
print 1
time.sleep(1)
# Execute spam function
genericSpammer(quantity, msg)
print "[+] Succesfully send " + str(quantity) + " messages."
# EXCEPTION HANDLING -------------------------------------------------------------------
except pyautogui.FailSafeException:
print "[+] Aborted program."
except KeyboardInterrupt:
print "[+] Aborted program."
except Exception as er:
print "[-] An unexpected error was raised: " + str(er)
finally:
raw_input("Press any key to continue...")
menu_actions['main_menu']()
# Dictionary of menu entrys
menu_actions = {
'main_menu': MainMenu,
'1': AutoTypeTextMenu,
'2': ClearChatMenu,
'3': EmailSpammerMenu,
'4': GenericSpammerMenu,
'99': DoExitMenu,
}
# Display main menu if file gets executed
if __name__ == '__main__':
menu_actions['main_menu']()