fix: description

This commit is contained in:
Dobin
2024-03-23 20:09:24 +00:00
parent cf927e22e0
commit 3c4895b98c
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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
View File
@@ -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"