mirror of
https://github.com/dobin/SuperMega
synced 2026-06-02 17:27:10 +00:00
fix: description
This commit is contained in:
@@ -105,9 +105,9 @@ def delete_all_files_in_directory(directory_path):
|
||||
def rbrunmode_str(rbrunmode):
|
||||
rbrunmode = str(rbrunmode)
|
||||
if rbrunmode == "1":
|
||||
return "change AddressOfEntryPoint"
|
||||
return "change address of entrypoint"
|
||||
elif rbrunmode == "2":
|
||||
return "hijack branching instruction at Original Entry Point (jmp, call, ...)"
|
||||
return "hijack branching instruction in entrypoint"
|
||||
else:
|
||||
return "Invalid: {}".format(rbrunmode)
|
||||
|
||||
|
||||
+1
-1
@@ -30,7 +30,7 @@ class DataRefStyle(Enum):
|
||||
|
||||
class InjectStyle(Enum):
|
||||
ChangeEntryPoint = "change AddressOfEntryPoint"
|
||||
BackdoorCallInstr = "hijack branching instruction at Original Entry Point (jmp, call, ...)"
|
||||
BackdoorCallInstr = "hijack branching instruction in entrypoint"
|
||||
|
||||
class SourceStyle(Enum):
|
||||
peb_walk = "peb_walk"
|
||||
|
||||
Reference in New Issue
Block a user