Home Decompile Python with Uncompyle6
Post
Cancel

Decompile Python with Uncompyle6

uncompyle6 translates Python bytecode back into equivalent Python source code.

It enables the possibility to create .py files using the compiled version .pyc.

Install uncompyle6

It can be installed with your package manager.

1
sudo pip install uncompyle6

Decompile file

We just need to run the package to see it in action.

1
uncompyle6 get_flag.cpython-38.pyc -o get_flag.py
This post is licensed under CC BY 4.0 by the author.