-
Notifications
You must be signed in to change notification settings - Fork 0
/
skim_conf.py
executable file
·33 lines (27 loc) · 1.6 KB
/
skim_conf.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
#!/usr/bin/env python3
class Skim_conf:
'''
Configuration Items
'''
def show_banner(self):
import toolbag
'''
Print the banner
'''
tb = toolbag.Toolbag()
color = "green"
print(tb.color("\n\n ▄████████ ▄█ ▄█▄ ▄█ ▄▄▄▄███▄▄▄▄ ", color))
print(tb.color(" ███ ███ ███ ▄███▀ ███ ▄██▀▀▀███▀▀▀██▄ ", color))
print(tb.color(" ███ █▀ ███▐██▀ ███▌ ███ ███ ███ ", color))
print(tb.color(" ███ ▄█████▀ ███▌ ███ ███ ███ ", color))
print(tb.color("▀███████████ ▀▀█████▄ ███▌ ███ ███ ███ ", color))
print(tb.color(" ███ ███▐██▄ ███ ███ ███ ███ ", color))
print(tb.color(" ▄█ ███ ███ ▀███▄ ███ ███ ███ ███ ", color))
print(tb.color(" ▄████████▀ ███ ▀█▀ █▀ ▀█ ███ █▀ ", color))
print(tb.color("\n\nOnly domains which are not responding 200OK are printed.\n", color))
def whitelist_domains(self):
'''
Whitelist "List" data type containing domains which are not used or not applicable to track content.
'''
whitelist_domains = [ ]
return whitelist_domains