Python/Decompile

From Omnia
Revision as of 21:45, 4 November 2025 by Kenneth (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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