Reverse engineer Windows executable file compiled using Python
Project description
Reverse Python Exe (repyexe)
Description
Reverse Engineer Windows executable file compiled using Python.
Usage
$ repyexe <exe_files and pyc_files>
from repyexe.decompile import decompile_exe
decompile_exe("samples/khaki.exe")
The version of Python used must be the same minor version as the one used to compile the file. If a different one is chosen, the script will exit with a message telling you which version to use. Use pyenv or something similar to switch your Python version.
For CX_Freeze files, the Python code is not located within the exe file but in pyc files in lib\library.zip, which needs to be manually extracted (using tools like uncompyle6).
Background
This script aims to automate the reverse engineering of malware for analysis as much as possible.
Most of the Python executable files are compiled using Py2exe, PyInstaller or CX_Freeze. While this script aims to decompile any exe file, it is currently limited to only those compiled using these 3 libraries. A warning will be shown for exe files that do not match the signatures of files compiled using these libraries.
This script can also bypass the following deobsfucation techniques (only enabled on Py2exe):
NOP, ROT_TWO, ROT_THREE, LOAD_CONST & POP_TOPEXTENDED_ARG
Supported Files
Python <= 3.7
Limited support for Python 3.8
Tested on files listed in tested.md
- Python 2 using Py2exe
- Python 3 using Py2exe
- Python 2 using Py2exe with obsfucation
- Python 3 using Py2exe with obsfucation
- Python 2 using PyInstaller
- Python 3 using PyInstaller
- Python 2 using PyInstaller --onefile
- Python 3 using PyInstaller --onefile
- Python 3 using CX_Freeze
Known Issues
- Some
JUMPinstructions toEXTENDED_ARGinstructions result in an error in uncompyle6's ifelsestmt.py file. Make the following changes to the file.
TODO
- Also support folders created by the 3 libraries (which would also automate the reverse engineering of files created by CX_Freeze)
Requirements
- uncompyle6
- pefile
Credits
- Repo: PyInstaller Extractor by Extreme Coders
- Repo: bytecode_graph by Joshua Homan, Mandiant
- Article: Deobsfuscating Python Bytecode by Joshua Homan, Mandiant
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file repyexe-0.1.3.tar.gz.
File metadata
- Download URL: repyexe-0.1.3.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f373dee5f568523001c0619ca1d37a940d202514cc806aa9053625c9a1248fd
|
|
| MD5 |
9d811af80e40220b30c9247572e0ad52
|
|
| BLAKE2b-256 |
a2c4b202d5f92fcfc0457c982e6e11fd808ea8e3147ebf49273bf7e04daf5aec
|
File details
Details for the file repyexe-0.1.3-py3-none-any.whl.
File metadata
- Download URL: repyexe-0.1.3-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
232099ab607a5a69d2bb695c55ce026a859e7fb031679882e2a19f82080ea825
|
|
| MD5 |
347c18890a1d7ddc582b70020fe50c7b
|
|
| BLAKE2b-256 |
4438a48f5eff15f4abcbe7a91bdf023ccc0cd2311f88152a40d8c3f6bf2798f5
|
File details
Details for the file repyexe-0.1.3-py2-none-any.whl.
File metadata
- Download URL: repyexe-0.1.3-py2-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9d3eda195a6957c9aea0aa31afc35ec27f5675703f0dfd631f17d70f49b2449
|
|
| MD5 |
dddf7f8528e1c3125dc61987ccb53a52
|
|
| BLAKE2b-256 |
6851dbfd23032d619149036a265ead7dfebfe9ef5b1fed545c602eb2c86eb876
|