"""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(Python
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
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...
用于LZ91 打包 EXE 文件的 Python 解包器 当前功能 解压LZ91 EXE LZ90不拆包 在指挥官敏锐系列上测试 用法 ./unpacklzexe.py input.exe output.exe 预览DOS 标头 ./header input.exe 输出: Signature: MZ Last block size: 0x01D3 Number of blocks: 0x00C8 Entries in reloc table: 0x0000 Number of...