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
+7 -7
View File
@@ -21,7 +21,6 @@ def compile(
logger.info("--[ Compile C to ASM: {} -> {} ".format(c_in, asm_out))
# Compile C To Assembly (text)
logger.info("---[ Make ASM from C: {} ".format(c_in))
run_process_checkret([
config.get("path_cl"),
"/c",
@@ -35,14 +34,14 @@ def compile(
observer.add_text("carrier_asm_orig", file_readall_text(asm_out))
# Assembly text fixup (SuperMega)
logger.info("---[ Fixup : {} ".format(asm_out))
logger.info("---[ ASM Fixup : {} ".format(asm_out))
if not fixup_asm_file(asm_out, payload_len, short_call_patching=short_call_patching):
raise Exception("Error: Fixup failed")
observer.add_text("carrier_asm_fixup", file_readall_text(asm_out))
#observer.add_text("carrier_asm_fixup", file_readall_text(asm_out))
# Assembly cleanup (masm_shc)
asm_clean_file = asm_out + ".clean"
logger.info("---[ Cleanup: {} ".format(asm_out))
logger.info("---[ ASM masm_shc: {} ".format(asm_out))
run_process_checkret([
config.get("path_masmshc"),
asm_out,
@@ -53,7 +52,7 @@ def compile(
# Move to destination we expect
shutil.move(asm_clean_file, asm_out)
observer.add_text("carrier_asm_cleanup", file_readall_text(asm_out))
#observer.add_text("carrier_asm_cleanup", file_readall_text(asm_out))
def bytes_to_asm_db(byte_data: bytes) -> bytes:
@@ -148,7 +147,8 @@ def fixup_iat_reuse(filename: FilePath, exe_info):
exe_info.add_iat_resolve(func_name, randbytes)
logger.info(" > Replace func name: {} with {}".format(
func_name, randbytes))
func_name, randbytes.hex()))
with open(filename, 'w') as asmfile:
asmfile.writelines(lines)
asmfile.writelines(lines)
#observer.add_text("carrier_asm_iat_patch", file_readall_text(filename))
+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)
+1 -1
View File
@@ -30,7 +30,7 @@ def create_c_from_template(
plugin_executor = ""
logger.info("--[ Create C from template: {} {} {} {} {}".format(
source_style, alloc_style, exec_style, decoder_style, payload_len
source_style.value, alloc_style.value, exec_style.value, decoder_style.value, payload_len
))
filepath = "plugins/allocator/{}.c".format(alloc_style.value)