Skip to content

Commit 2ffd9ca

Browse files
committed
Bug fixing, cleanup
Fixed bug of printing colored banner on windows, project structure update
1 parent 24b87f8 commit 2ffd9ca

File tree

5 files changed

+20
-25
lines changed

5 files changed

+20
-25
lines changed

β€Žbombila.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
from threading import Thread
99
from argparse import ArgumentParser
1010
import conf.config as cfg
11-
from utils.banner import banner
12-
from utils.service import Service
11+
from service import Service
1312

1413

1514
def flood(args, services):
@@ -86,7 +85,7 @@ def main():
8685
with open("services.json", "r", encoding="utf-8", errors="ignore") as file:
8786
services = json.load(file)["services"]
8887

89-
print(banner)
88+
print(cfg.banner)
9089

9190
# Set stop time value
9291
args.time += time.time()

β€Žconf/config.py

+18
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,21 @@
3030
"Quentin",
3131
"Sebastian"
3232
]
33+
34+
banner="""
35+
(\__.-. | β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ•—β–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—
36+
==== ===_]+ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•”β•β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ–ˆβ–ˆβ•— β–ˆβ–ˆβ–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—
37+
```- | β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β–ˆβ–ˆβ–ˆβ–ˆβ•”β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•‘
38+
`. β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘β•šβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•”β•β•β–ˆβ–ˆβ•‘
39+
` - >-> β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β•šβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘ β•šβ•β• β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•”β•β–ˆβ–ˆβ•‘β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ•—β–ˆβ–ˆβ•‘ β–ˆβ–ˆβ•‘
40+
β•šβ•β•β•β•β•β•^ β•šβ•β•β•β•β•β• β•šβ•β• `\ β•šβ•β•β•šβ•β•β•β•β•β• β•šβ•β•β•šβ•β•β•β•β•β•β•β•šβ•β• β•šβ•β•
41+
__ / ( < / ) \___
42+
- ------===;;;'====------------------===;;;===----- - -
43+
\/ ~"~"~"~"~"~\~"~)~"/
44+
(_ ( \ ( > \)
45+
\_( _ < >_>'
46+
~ `-i' ::>|--"
47+
I;|.|.|
48+
<|i::|i|`.
49+
(` ^'"`-' ")
50+
----`---------'---"""

β€Žrequirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
colorama
21
requests

β€Žutils/service.py β€Žservice.py

File renamed without changes.

β€Žutils/banner.py

-21
This file was deleted.

0 commit comments

Comments
Β (0)