Python

  • Decompile .pyc files

    Several software can be used to decompile python bytecode.

    SoftwareSourceNotes
    uncompyle6GitHubDecompiles Python bytecode to equivalent Python source code. Support python versions up to to 3.8. Legend has it that it exists an option (maybe -d) that can succeed when the regular decompilation fails.
    Decompyle++ GitHubLess reliable, but can decompile every python3 versions.
    Easy Python DecompilerWebsiteWindows GUI to decompile python bytecode.
  • Pyinstaller Extractor - GitHub

    Extracts the python bytecode from pyinstaller windows executables. Can be decomplied after.

    python3 pyinstxtractor.py <filename>

    An alternative is pydumpck