From ecceca22799fee566975b97401b09023098c9a55 Mon Sep 17 00:00:00 2001 From: Dobin Date: Wed, 7 Feb 2024 20:28:34 +0000 Subject: [PATCH] fix: verifyarg bugy --- supermega.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/supermega.py b/supermega.py index 55a3439..fdf6db7 100644 --- a/supermega.py +++ b/supermega.py @@ -32,7 +32,7 @@ options_default = { "dataref_style": DataRefStyle.APPEND, "try_start_loader_shellcode": False, # without payload (Debugging) - "try_start_final_shellcode": True, # with payload (should work) + "try_start_final_shellcode": False, # with payload (should work) "try_start_final_infected_exe": True, # with payload (should work) # cleanup @@ -67,6 +67,7 @@ options_verify = { # testing "try_start_loader_shellcode": False, # without payload (Debugging) "try_start_final_shellcode": False, # with payload (should work) + "try_start_final_infected_exe": False, # with payload (should work) # injecting into exe "inject_exe": True, @@ -79,7 +80,7 @@ options_verify = { # cleanup "cleanup_files_on_start": True, - "cleanup_files_on_exit": True, # all is just in out/ + "cleanup_files_on_exit": False, # all is just in out/ # doesnt work "obfuscate_shc_loader": False,