-
Notifications
You must be signed in to change notification settings - Fork 4
/
slyther.py
43 lines (36 loc) · 1.3 KB
/
slyther.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
#SLYTHER
version = '0.0.3'
from colorama import init
init()
from colorama import Fore, Back, Style
from modules import audit
from modules import check
def banner():
print(Fore.MAGENTA + Style.BRIGHT + f"""
______ __ _ __
.' ____ \ [ | / |_[ |
| (___ \_| | | _ __`| |-'| |--. .---. _ .--.
_.____`. | | [ \ [ ]| | | .-. |/ /__\\[ `/'`\]
| \____) | | | \ '/ / | |, | | | || \__., | |
\______.'[___][\_: / \__/[___]|__]'.__.'[___]
\__.'
""" + Style.RESET_ALL + Fore.MAGENTA + f"""
> AWS Security Tool
> Created by @iamavu
> v{version}
""")
print(Style.RESET_ALL)
def slyther():
banner()
isAWS = check.check_aws()
if isAWS:
audit.audit.main()
else:
print(Fore.RED + '[!] aws-cli is not installed!')
exit()
if __name__ == '__main__':
try:
slyther()
except KeyboardInterrupt:
print(Fore.RED + '\n[!] Keyboard Interrupt received! Aborted!')
exit()