A helper script for unpacking and decompiling EXEs compiled from python code. - python-exe-unpacker/python_exe_unpack.py at master · WithSecureLabs/python-exe-unpacker
"""Function that check if the magic bytes is recognised by the python packer.""" @abc.abstractmethod def unpacked(self, filename): """Function that unpacked the binary to python.""" class PyInstaller(PythonExectable): ''' EXE is created using CArchive instead of ZlibArchive: ...
Python unpacker for LZ91 packed EXE files Current features Unpacks LZ91 EXEs Doesn't unpack LZ90 Tested on the commander keen series Usage ./unpacklzexe.py input.exe output.exe Previewing DOS headers ./header input.exe Output: Signature: MZ Last block size: 0x01D3 Number of blocks: 0x00...