From c077be0131cf243eb8bd753e8464d1eea361c7b1 Mon Sep 17 00:00:00 2001 From: Dobin Date: Fri, 9 Feb 2024 17:59:51 +0000 Subject: [PATCH] fix: no verify of iat_reuse shellcode --- supermega.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supermega.py b/supermega.py index 1d9c01c..f85ec3c 100644 --- a/supermega.py +++ b/supermega.py @@ -281,7 +281,7 @@ def start(options): output.write(data) debug_data["final_shellcode"] = data - if options["verify"]: + if options["verify"] and options["source_style"] == SourceStyle.peb_walk: print("--[ Verify final shellcode ]") if not verify_shellcode(main_shc_file): print("Could not verify, still continuing")