How to decompile an exe file compiled by py2exe?

后端 未结 4 1113
广开言路
广开言路 2020-12-04 18:32

How to decompile an exe file compiled by py2exe?

just one exe file, didn\'n have any zip file.

how to decompile to pyc or pyo file?

4条回答
  •  失恋的感觉
    2020-12-04 18:52

    Another approach is to take the python byte code dump directly from memory, Immunity Inc published a paper about this subject with a toolkit that takes the bytecode from memory and decompile it to .py source code. pyREtic

提交回复
热议问题