diff --git a/__pycache__/i64tosqlite.cpython-312.pyc b/__pycache__/i64tosqlite.cpython-312.pyc index 8887a2b..4501f55 100644 Binary files a/__pycache__/i64tosqlite.cpython-312.pyc and b/__pycache__/i64tosqlite.cpython-312.pyc differ 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__":