
LookiMan/EXE2PY-Decompiler - GitHub
With this program you can decompile executable files created using pyinstaller or py2exe. It is also possible to decompile individual cache files back into the original python source code.
A powerful tool allowing you to reverse .EXE back to .PY - GitHub
Riptide is a tool allowing you to reverse .EXE files compiled with PyInstaller back to the original source, Python, showing you the source code of the file. 📀 Dependencies 📀
GitHub - WithSecureLabs/python-exe-unpacker: A helper script …
A script that helps researcher to unpack and decompile executable written in python. However, right now this only supports executable created with py2exe and pyinstaller. This script glues together several tools available to the community.
python - How to decompile an exe file compiled by py2exe
Jun 9, 2011 · The Library.zip contains mostly pyc/pyo files, you can decompile them using any decompiler. Links : Py2ExeDumper: https://sourceforge.net/projects/py2exedumper/ Easy Python Decompiler: http://sourceforge.net/projects/easypythondecompiler/
Is it possible to decompile a compiled .pyc file into a .py file?
Mar 13, 2011 · There is a perfect open-source Python (.PYC) decompiler, called Decompyle++ https://github.com/zrax/pycdc/ Decompyle++ aims to translate compiled Python byte-code back into valid and human-readable Python source code.
Reverse Engineering Python executable · GitHub
Jan 1, 2025 · Compile Python 3.7 from source. Modify the _PyEval_EvalFrameDefault function such that it dumps the code object to disk. By doing so we do not need to bother about all the anti-debugging and encrypted stuff. This is because pyarmor decrypts the code object in memory before it hands it to the Python VM for execution.
How do you reverse engineer an EXE "compiled" with PyInstaller
The one stop solution for all pyinstaller exe things. Use this program to reverse engineer a pyinstaller generated exe file. https://sourceforge.net/projects/pyinstallerexerebuilder/
Decompiling recent python versions (up to 3.12) - Ring 0x00
Jan 3, 2024 · Run pyinstxtractor with the same python version (the one just downloaded) with which the code was compiled. The script will extract all compiled modules and even suggest you the entry point. Use a python decompiler to decompile the pyc file.
GitHub - snootysteppes/Py2ExeDumper: A py2exe decompiler, …
Py2ExeDumper is a Python-based tool designed to extract Python bytecode (.pyc files) from a py2exe executable and optionally decompile the extracted .pyc files into Python source code. This document provides a comprehensive, complex, and slightly over-explained guide to understanding and using Py2ExeDumper.
A bash script to automatically decompile a python-compiled executable …
# Check if the file is a python compiled executable if ! strings $exe_file | grep -q "PyInstaller"; then echo "[-] File \"$exe_file\" is not a python-compiled executable."
- Some results have been removed