pyinstxtractor icon indicating copy to clipboard operation
pyinstxtractor copied to clipboard

PyInstaller Extractor

Results 20 pyinstxtractor issues
Sort by recently updated
recently updated
newest added

When writing a pyc file (`PyInstArchive._writePyc(self, filename, data)`), the `pyc_magic` used is different from the value of the original file, which will cause an error in decompiling the pyc-file (`$...

当我使用最新版本的 pyinstxtractor.py 时,我得到的 1.pyc 似乎依然没有一个正确的文件头,以至于当我使用 uncompyle6 时会报错: ```shell ~ uncompyle6 1.pyc Unknown type 0 Traceback (most recent call last): File "/home/temp/.local/bin/uncompyle6", line 11, in sys.exit(main_bin()) File "/home/temp/.local/lib/python2.7/site-packages/uncompyle6/bin/uncompile.py", line 194, in...

Hi, When one launches pyinstxtractor with a python interpetor that has a different version than the one used in the packed python script, then the header of the current used...

with open(filename, 'wb+') as pycFile: ValueError: embedded null character

What Is The Python Version And How To Download It `Python version: 309` ``` C:\Users\xapao\Desktop>python pyinstxtractor.py MEGATRON.exe [+] Processing MEGATRON.exe [+] Pyinstaller version: 2.1+ [+] Python version: 309 [+] Length...

Under the same `typeCmprsData` ('s') PyInstaller versions prior to 3.2 store Python source files (see [issue 1847](https://github.com/pyinstaller/pyinstaller/issues/1847)). They shouldn't be prefixed with pyc header. I didn't (yet) find any way...

Hello! I have modified pyinstaller ELF. Can you take a look please? Thanks! https://1drv.ms/u/s!AhPkgOPZ3CoFgbNCKsqJ08aaNjBlPg?e=hWQGtt

Suggest to use xdis.magics.versions for proper magic insertion in pyc files: ```python3 {b'\x02\x99\x99\x00': '1.0', b'\x03\x99\x99\x00': '1.1', b'\x89.\r\n': '1.3', b'\x04\x17\r\n': '1.4', b'\x99N\r\n': '1.5', b'\xfc\xc4\r\n': '1.6', b'\x87\xc6\r\n': '2.0', b'*\xeb\r\n': '2.1', b'-\xed\r\n': '2.2',...

I’m trying to extract a PYZ that I know it should contains *.pyc.encrypted files. The extraction finished without any errors but those files are missing, what could be the reason...

Hello, I am currently attempting to reverse engineer the executable file of DragGAN, which is a combined version created by someone else. However, I encountered an issue where it seems...