-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
43 lines (34 loc) · 1.34 KB
/
config.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
#!/usr/local/bin/python3.5
"""
Variables that are shared among modules.
"""
import os
verbosity = False
concretization = None
proxy_ip = None
proxy_port = None
DEBUG = False
interactive = False
CONNECTOR_1_4_1 = "modules/connector/aslanpp-connector-1.4.1.jar"
CONNECTOR_1_4_9 = "modules/connector/aslanpp-connector.jar"
CONNECTOR_1_3 = "modules/connector/aslanpp-connector-1.3.jar"
mc_timeout = 600
receiver_entities = {"webapplication","filesystem","database","<webapplication>","<filesystem>","<database>"}
TOOL_NAME = "Wfast"
EVIL_SCRIPT = "/Users/federicodemeo/Desktop/regis/PhDStudents/demeo/SQLi-formalization/wsfast/evil_file.txt"
remote_shell_write = "/Users/federicodemeo/Desktop/regis/PhDStudents/demeo/SQLi-formalization/wsfast/evil_file.txt"
BANNER = """\033[38;5;212m
__ __ _____ ______________________
/ \ / \/ _ \ \_ _____/\_ _____/__ ___
\ \/\/ / /_\ \ | __) | __)_\ \/ /
\ / | \| \ | \> <
\__/\ /\____|__ /\___ / /_______ /__/\_ \\
\/ \/ \/ \/ \/
\033[38;5;195m[{}]\033[38;5;212m
\033[38;5;195m{}\033[38;5;212m
"""
VERSION = "1.0-dev"
SITE = ""
HOME = os.path.expanduser("~")
WFAST_HOME = os.path.join(HOME,".wfast")
WFAST_EXTRACTED_FILES_DIR = os.path.join(WFAST_HOME,"files")