forked from p34709852/monkey
Agent: Remove kill file config option
This commit is contained in:
parent
cb613393e2
commit
4966c74214
|
@ -96,12 +96,6 @@ class Configuration(object):
|
||||||
dropper_target_path_win_64 = r"C:\Windows\temp\monkey64.exe"
|
dropper_target_path_win_64 = r"C:\Windows\temp\monkey64.exe"
|
||||||
dropper_target_path_linux = "/tmp/monkey"
|
dropper_target_path_linux = "/tmp/monkey"
|
||||||
|
|
||||||
###########################
|
|
||||||
# Kill file
|
|
||||||
###########################
|
|
||||||
kill_file_path_windows = "%windir%\\monkey.not"
|
|
||||||
kill_file_path_linux = "/var/run/monkey.not"
|
|
||||||
|
|
||||||
###########################
|
###########################
|
||||||
# monkey config
|
# monkey config
|
||||||
###########################
|
###########################
|
||||||
|
|
|
@ -26,8 +26,6 @@
|
||||||
|
|
||||||
"monkey_dir_name": "monkey_dir",
|
"monkey_dir_name": "monkey_dir",
|
||||||
|
|
||||||
"kill_file_path_linux": "/var/run/monkey.not",
|
|
||||||
"kill_file_path_windows": "%windir%\\monkey.not",
|
|
||||||
"dropper_try_move_first": true,
|
"dropper_try_move_first": true,
|
||||||
"exploiter_classes": [
|
"exploiter_classes": [
|
||||||
"SSHExploiter",
|
"SSHExploiter",
|
||||||
|
|
|
@ -78,16 +78,6 @@ def main():
|
||||||
formatted_config = pformat(WormConfiguration.hide_sensitive_info(WormConfiguration.as_dict()))
|
formatted_config = pformat(WormConfiguration.hide_sensitive_info(WormConfiguration.as_dict()))
|
||||||
print(f"Loaded Configuration:\n{formatted_config}")
|
print(f"Loaded Configuration:\n{formatted_config}")
|
||||||
|
|
||||||
# Make sure we're not in a machine that has the kill file
|
|
||||||
kill_path = (
|
|
||||||
os.path.expandvars(WormConfiguration.kill_file_path_windows)
|
|
||||||
if sys.platform == "win32"
|
|
||||||
else WormConfiguration.kill_file_path_linux
|
|
||||||
)
|
|
||||||
if os.path.exists(kill_path):
|
|
||||||
print("Kill path found, finished run")
|
|
||||||
return True
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if MONKEY_ARG == monkey_mode:
|
if MONKEY_ARG == monkey_mode:
|
||||||
log_path = get_monkey_log_path()
|
log_path = get_monkey_log_path()
|
||||||
|
|
Loading…
Reference in New Issue