将python打包的.exe文件还原成.py,针对Pyinstaller的exe反编译-exe文件

将python打包的.exe文件还原成.py,针对Pyinstaller的exe反编译

将python打包的.exe文件还原成.py文件

1、下载 pyinstxtractor.py

地址:https://sourceforge.net/projects/pyinstallerextractor/

2、把pyinstxtractor.py和exe文件放在同个目录下

打开cmd,进入该目录,输入:

python2 pyinstxtractor.py xx.exe

将python打包的.exe文件还原成.py,针对Pyinstaller的exe反编译

运行后生成xx.exe_extracted文件夹。

3、用uncompyle2来对pyc文件进行反编译。

1、安装uncompyle2

在windows上安装前你需要已经安装python2.7(uncompyle2是基于python2.7的)

打开https://github.com/wibiti/uncompyle2

点击右上角的Download ZIP,下载后假设解压至d:\

打开cmd,进入d:\\uncompyle2-master,输入:

python2 setup.py install

2、反编译

将a.pyc文件复制到d:\\uncompyle2-master\scripts

cmd中进入d:\\uncompyle2-master\scripts,输入:

python2 -u uncompyle2 a.pyc > a.py

a.py已经出现在d:\\uncompyle2-master\scripts

3、使用EasyPythonDecompiler,将pyc解析为py文件

https://sourceforge.net/projects/easypythondecompiler/

打开软件

将python打包的.exe文件还原成.py,针对Pyinstaller的exe反编译

还有一个补丁在github: https://github.com/kholia/PyInstallerExtractor

推荐阅读