diff --git a/helper.py b/helper.py index 1d99d0a..3b9b134 100644 --- a/helper.py +++ b/helper.py @@ -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) diff --git a/model/defs.py b/model/defs.py index 77ce312..701a6a9 100644 --- a/model/defs.py +++ b/model/defs.py @@ -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"