ui: nicer output

This commit is contained in:
Dobin
2024-02-19 20:34:31 +00:00
parent 2f9ba27ed1
commit fb23835d51
9 changed files with 22 additions and 22 deletions
+2 -4
View File
@@ -20,12 +20,10 @@ def inject_exe(
exe_out: FilePath,
inject_mode: int,
):
logger.info("--[ Injecting: {} into: {} -> {} mode {}".format(
logger.info("--[ Injecting: {} into: {} -> {} (mode: {})".format(
shellcode_in, exe_in, exe_out, inject_mode
))
logger.warn("--[ Inject mode: {}".format(rbrunmode_str(inject_mode)))
logger.warn("---[ Inject mode: {}".format(rbrunmode_str(inject_mode)))
# create copy of file exe_in to exe_out
shutil.copyfile(exe_in, exe_out)