feature: setting for disabling the window

This commit is contained in:
Dobin Rutishauser
2024-06-26 06:33:10 +02:00
parent d935792242
commit c93234845b
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -39,6 +39,7 @@ class Settings():
# More # More
self.fix_missing_iat = True self.fix_missing_iat = True
self.patch_show_window = True
self.payload_location = PayloadLocation.DATA self.payload_location = PayloadLocation.DATA
# directories and filenames # directories and filenames
+1
View File
@@ -143,6 +143,7 @@ class Injector():
self.inject_and_reference_data() self.inject_and_reference_data()
# changes from console to UI (no console window) if necessary # changes from console to UI (no console window) if necessary
if self.settings.patch_show_window:
self.superpe.patch_subsystem() self.superpe.patch_subsystem()
# We done # We done