-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.py
More file actions
20 lines (19 loc) · 771 Bytes
/
header.py
File metadata and controls
20 lines (19 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import random
import colorManager as cm
class FE_HEADER:
_cm = cm.FE_COLOR()
headers = [{"Header":"","Body":""" .---. .-----------
/ \ __ / ------
/ / \( )/ -----
////// ' \/ ` ---
//// / // : : ---
// / / /` '--
// //..\\
====UU====UU====
'//||\\`
''``""","Footer":" Fat Eagle , a cybersecurity framework by 0xDeviI"}]
def printHeader(self):
_ = random.randint(0,len(self.headers) - 1)
print(self._cm.colorize_str(self.headers[_]["Header"] + "\n") +
self._cm.colorize_str(self.headers[_]["Body"] + "\n") +
self._cm.colorize_str(self.headers[_]["Footer"] + "\n") + self._cm.resetColor())