Hello! I'm trying to decompile a cx_freeze app, and when I run the command I got this error:
python3 unfrozen_binary_cx_Freeze.py ~/Downloads/app.exe
Traceback (most recent call last):
File "unfrozen_binary_cx_Freeze.py", line 17, in <module>
from common import uncompyle_decompilation
File "/home/thiago/Downloads/unfrozen_binary-master/common.py", line 18, in <module>
from unpyc3.unpyc3 import dec_module
File "/home/thiago/Downloads/unfrozen_binary-master/unpyc3.py", line 1984, in <module>
SETUP_LOOP, BREAK_LOOP, CONTINUE_LOOP,
NameError: name 'SETUP_LOOP' is not defined
I know my app is a cx_freeze, cause looking into it with a text editor I see this:
Exception: %s
Original Exception: %s�Cannot create context message string object.����cx_Freeze Fatal
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level='asInvoker' uiAccess='false' />
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
Hello! I'm trying to decompile a cx_freeze app, and when I run the command I got this error:
I know my app is a cx_freeze, cause looking into it with a text editor I see this: