Removed monkey dir paths from island's configuration

This commit is contained in:
VakarisZ 2019-03-20 09:33:10 +02:00
parent 0268fa833f
commit eb1cb91704
2 changed files with 5 additions and 16 deletions

View File

@ -107,9 +107,6 @@ class Configuration(object):
dropper_target_path_win_32 = r"C:\Windows\monkey32.exe" dropper_target_path_win_32 = r"C:\Windows\monkey32.exe"
dropper_target_path_win_64 = r"C:\Windows\monkey64.exe" dropper_target_path_win_64 = r"C:\Windows\monkey64.exe"
dropper_target_path_linux = '/tmp/monkey' dropper_target_path_linux = '/tmp/monkey'
# Monkey dir paths
monkey_dir_linux = '/tmp/monkey_dir'
monkey_dir_windows = r'C:\Windows\temp\monkey_dir'
########################### ###########################
# Kill file # Kill file
@ -164,6 +161,10 @@ class Configuration(object):
keep_tunnel_open_time = 60 keep_tunnel_open_time = 60
# Monkey files directories
monkey_dir_linux = '/tmp/monkey_dir'
monkey_dir_windows = r'C:\Windows\Temp\monkey_dir'
########################### ###########################
# scanners config # scanners config
########################### ###########################

View File

@ -423,19 +423,7 @@ SCHEMA = {
"type": "integer", "type": "integer",
"default": 60, "default": 60,
"description": "Time to keep tunnel open before going down after last exploit (in seconds)" "description": "Time to keep tunnel open before going down after last exploit (in seconds)"
}, }
"monkey_dir_windows": {
"title": "Monkey's windows directory",
"type": "string",
"default": r"C:\Windows\temp\monkey_dir",
"description": "Directory containing all monkey files on windows"
},
"monkey_dir_linux": {
"title": "Monkey's linux directory",
"type": "string",
"default": "/tmp/monkey_dir",
"description": "Directory containing all monkey files on linux"
},
} }
}, },
"classes": { "classes": {