From 76f7be48b1a7e1d5c592be2d8aff407e966ff2bd Mon Sep 17 00:00:00 2001 From: serr Date: Sun, 16 Mar 2025 18:59:23 +0300 Subject: [PATCH] delete asm files --- __pycache__/i64tosqlite.cpython-312.pyc | Bin 2133 -> 2133 bytes exetoi64.py | 4 +++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/__pycache__/i64tosqlite.cpython-312.pyc b/__pycache__/i64tosqlite.cpython-312.pyc index 8887a2bf5806bcb068e1afe1fe10a80327824b3a..4501f55b4cc5b73f65ff70e7855ed06d7d5eca73 100644 GIT binary patch delta 19 ZcmcaAa8-coG%qg~0}xF5u#wA~0{}TD1yle4 delta 19 ZcmcaAa8-coG%qg~0}wPm*vRG00RT8~1v3Bu diff --git a/exetoi64.py b/exetoi64.py index b59b979..bb4a3f2 100644 --- a/exetoi64.py +++ b/exetoi64.py @@ -8,10 +8,12 @@ def make_i64(ida_executable, infile, idbfile): print(f"\033[92mAnalysing {infile}...\033[0m") - cmd = [ida_executable, "-B", "-o%s" % idbfile, infile] + cmd = [ida_executable, "-B", infile] process = subprocess.Popen(cmd, shell=True) process.wait() + # там почему то создается ненужный asm файл + os.remove(infile+'.asm') if __name__ == "__main__":