Python/Decompile: Difference between revisions

From Omnia
Jump to navigation Jump to search
(Created page with "== uncompyle6 == Cross Python bytecode decompiler for Python bytecode up to Python 3.8. pip install uncompyle6 uncompyle6 your_filename.pyc uncompyle6 your_filename.pyc > your_filename.py")
 
No edit summary
 
Line 1: Line 1:
== pylingual ==
git clone https://github.com/syssec-utd/pylingual
cd pylingual
python -m venv venv
source venv/bin/activate
pip install poetry>=2.0
poetry lock
poetry install
pylingual main.cpython-312.pyc
deactivate
ref: https://github.com/syssec-utd/pylingual
== uncompyle6 ==
== uncompyle6 ==



Latest revision as of 21:45, 4 November 2025

pylingual

git clone https://github.com/syssec-utd/pylingual
cd pylingual
python -m venv venv
source venv/bin/activate
pip install poetry>=2.0
poetry lock
poetry install
pylingual main.cpython-312.pyc
deactivate

ref: https://github.com/syssec-utd/pylingual

uncompyle6

Cross Python bytecode decompiler for Python bytecode up to Python 3.8.

pip install uncompyle6
uncompyle6 your_filename.pyc
uncompyle6 your_filename.pyc > your_filename.py