-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbanner.py
62 lines (55 loc) · 2.02 KB
/
banner.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
import os
import sys
import time
import random
from termcolor import colored, cprint
def Banner():
bn1 = colored(''' \033[92m
.---. .-----------
/ \ __ / ------
/ / \( )/ -----
////// ' \/ ` --- DARK EAGLE !!
//// / // : : ---
// / / /` '--
// //..\\
====UU====UU====
'//||\\`
''`` ''',)
bn2 = colored(''' \033[93m
,----------------, ,---------,
,-----------------------, ," ,"|
," ,"| ," ," |
+-----------------------+ | ," ," |
| .-----------------. | | +---------+ |
| | | | | | -==----'| |
| | DARK EAGLE! | | | | | |
| | Web pentesting | | |/----|`---= | |
| | Framework | | | ,/|==== ooo | ;
| | | | | // |(((( [33]| ,"
| `-----------------' |," .;'| |(((( | ,"
+-----------------------+ ;; | | |,"
/_)______________(_/ //' | +---------+
___________________________/___ `,
/ oooooooooooooooo .o. oooo /, \,"-----------
/ ==ooooooooooooooo==.o. ooo= // ,`\--{)B ,"
/_==__==========__==_ooo__ooo=_/' /___________,"
`-----------------------------'
''',)
bn3 = colored('''\033[92m
\033[92m Dark Eagle \033[27m
-----------
\
\
\
\ |
____________ __ -+- ____________
\_____ / /_ \ | \ _____/
\_____ \____/ \____/ _____/
\_____ _____/
\___________ ___________/
/____\
''',)
bou = [bn1, bn2, bn3]
const = bou[random.randint(0, 2)]
print const
Banner()