Possible Duplicate:
Can EXE generated by cx_freeze be completely decompiled back to readable Python code?

I've used cx-freeze to convert a python script to an executable. Is it possible to reverse that? Can I get my python script from the binary cx-freeze has generated?

EDIT. This is a practical question. I really need to recover one cx-freezed executable to a more-less readable form. Does anyone have a recipie of doing it?

link|improve this question

78% accept rate
feedback

closed as exact duplicate by delnan, zeekay, casperOne Feb 23 at 19:17

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

Any 'frozen' PY application can be disassembled but not really decompiled. With enough time and patience someone would be able to reverse-engineer nearly any program (including yours).

Edit Correction as per comments below.

link|improve this answer
"can not be really decompiled" -- [citation needed] – delnan Feb 21 at 15:56
Can one recover the python bytecode from the cx-freezed binary? If so, then I'd try to use this tool: github.com/gstarnberger/uncompyle, which claims to be able to restore code by reading the bytecode. – facha Feb 21 at 15:58
Yes, python bytecode can be recovered from the frozen exe. This is disassembling NOT decompiling. Can you then return that bytecode to a readable format? Yes. Will it be the original source code? No. – PenguinCoder Feb 21 at 16:01
Does anyone know how to do that? – facha Feb 21 at 16:21
@facha Does anyone know how to do what? Turn python bytecode to human readable format? Yes. If you're looking to 'secure' Python code, cx_freeze will not help you from a user who knows how to work around it. – PenguinCoder Feb 21 at 16:24
show 1 more comment
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.