-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathbomber.py
89 lines (77 loc) · 5.21 KB
/
bomber.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
from about import *
from instagram_bomber import *
from sms_bomber import *
from callprocess import *
from checkconnection import *
from whatsapp_bomber import wbbomber
from email_bomber import *
from simple_chalk import chalk
import time
import platform
if platform.system() == 'Linux':
linux = True
pass
elif platform.system() == 'Windows':
linux = False
pass
else:
print('OS not supported !')
exit()
s1 = ''
Bomber = """
▄████████ ▄█ ▄█ ▄█ ███▄▄▄▄ ▄██████▄ ███▄▄▄▄ ▄████████
███ ███ ███ ███ ███ ███▀▀▀██▄ ███ ███ ███▀▀▀██▄ ███ ███
███ ███ ███ ███ ███▌ ███ ███ ███ ███ ███ ███ ███ █▀
███ ███ ███ ███ ███▌ ███ ███ ███ ███ ███ ███ ▄███▄▄▄
▀███████████ ███ ███ ███▌ ███ ███ ███ ███ ███ ███ ▀▀███▀▀▀
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▄
███ ███ ███▌ ▄ ███▌ ▄ ███ ███ ███ ███ ███ ███ ███ ███ ███
███ █▀ █████▄▄██ █████▄▄██ █▀ ▀█ █▀ ▀██████▀ ▀█ █▀ ██████████
▀ ▀
▀█████████▄ ▄██████▄ ▄▄▄▄███▄▄▄▄ ▀█████████▄ ▄████████ ▄████████
███ ███ ███ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ ███ ███
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ █▀ ███ ███
▄███▄▄▄██▀ ███ ███ ███ ███ ███ ▄███▄▄▄██▀ ▄███▄▄▄ ▄███▄▄▄▄██▀
▀▀███▀▀▀██▄ ███ ███ ███ ███ ███ ▀▀███▀▀▀██▄ ▀▀███▀▀▀ ▀▀███▀▀▀▀▀
███ ██▄ ███ ███ ███ ███ ███ ███ ██▄ ███ █▄ ▀███████████
███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
▄█████████▀ ▀██████▀ ▀█ ███ █▀ ▄█████████▀ ██████████ ███ ███
███ ███
"""
Creds = """
************************************************
* All In One Bomber - By NocturnalCompiler *
* Version 2.0.0 (Stable) *
* Discord : fyodor_dostoyevsky. *
* Old Maintainer : b31ngd3v *
************************************************
"""
Options = """
|-TYPE---------------------|
| [1] - Email Bomber |
| [2] - SMS Bomber |
| [3] - WhatsApp Bomber |
| [4] - Instagram Bomber |
| [5] - Exit |
|--------------------------|"""
print(chalk.yellow.bold(Bomber))
print(chalk.cyanBright(Creds))
print(chalk.red.bold(" Please use this tool for educational purpose only. "))
print(chalk.red.bold(" Github : https://github.com/Nocturnal-Compiler/Ultimate-Bomber-Spammer "))
print('\n')
print(chalk.green.bold(Options))
opt = int(input(chalk.blue.bold(" |-> Enter the option number : ")))
if opt == 1:
ebombingwin()
elif opt == 2:
if linux:
smsbombinglinux()
else:
smsbombingwin()
elif opt == 3:
wbbomber()
elif opt == 4:
if linux:
igbombinglinux()
else:
igbombingwin()