pyinstxtractor
pyinstxtractor copied to clipboard
cant decompile
with open(filename, 'wb+') as pycFile:
ValueError: embedded null character
Full log:
[+] Processing madclips.exe
[+] Pyinstaller version: 2.1+
[+] Python version: 3.10
[+] Length of package: 8420072 bytes
[+] Found 38 files in CArchive
[+] Beginning extraction...please standby
[+] Possible entry point: pyiboot01_bootstrap.pyc
[+] Possible entry point: pyi_rth_inspect.pyc
[+] Possible entry point: pyi_rth_subprocess.pyc
[+] Possible entry point: pyi_rth_pkgutil.pyc
[+] Possible entry point: pyi_rth_multiprocessing.pyc
[+] Possible entry point: pyimod04_certifi . 0.pyc
Traceback (most recent call last):
File "F:\Рабочий стол\Projects\reverse\MadClips\pyinstxtractor.py", line 424, in
1
My working crutch, most likely you can do a more spot check and more universal names, but the main thing is that it worked for me

Thanks for the report.
Probably something like this should also work to remove trailing nulls
with open(filename.strip(), 'wb+') as pycFile: