-
Notifications
You must be signed in to change notification settings - Fork 121
/
spraykatz.py
executable file
·36 lines (28 loc) · 1.9 KB
/
spraykatz.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
#!/usr/bin/env python3
# coding: utf-8
# Author: @aas_s3curity
# Imports
import os
from core.Colors import green, white, red
from core.Args import parseArgs, menu
from core.Resources import initSpraykatz
from core.Engine import run
def printBanner():
''' Print the tool banner '''
#os.system("clear")
print ("")
print ("███████╗██████╗ ██████╗ █████╗ ██╗ ██╗██╗ ██╗ █████╗ ████████╗███████╗")
print ("██╔════╝██╔══██╗██╔══██╗██╔══██╗╚██╗ ██╔╝██║ ██╔╝██╔══██╗╚══██╔══╝╚══███╔╝")
print ("███████╗██████╔╝██████╔╝███████║ ╚████╔╝ █████╔╝ ███████║ ██║ ███╔╝ ")
print ("╚════██║██╔═══╝ ██╔══██╗██╔══██║ ╚██╔╝ ██╔═██╗ ██╔══██║ ██║ ███╔╝ ")
print ("███████║██║ ██║ ██║██║ ██║ ██║ ██║ ██╗██║ ██║ ██║ ███████╗")
print ("╚══════╝╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚══════╝%sv0.9.9%s" % (green, white))
print (" ")
print (" Written by %s@aas_s3curity%s " % (red, white))
print (" ")
if __name__ == '__main__':
printBanner()
args = parseArgs(menu())
initSpraykatz()
# Fire!
run(args)