idascript
idascript copied to clipboard
Fix some error of `src/idascript` below: - add some guidance on installing libmagic - no magic.open(), magic.load() function any more, replace it with Magic class and magic.from_file() function (check out...
libmagic module not found, automatic detection of 64bit binaries won't work
In the end of idascript, there is: `os.remove(OUTFILE)` that fails due to how tempfile.mkstemp() acts, it returns fd and the filename. The fd was remained open, and thus the error...