added pyinstxtractor to RE

pull/41/head
Swapnadeep Som 2021-02-01 12:21:33 +05:30 committed by GitHub
parent c83fc06b9a
commit 27a01249ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -1288,10 +1288,15 @@ Windows Executables
Python Reversing
------------
* [Easy Python Decompiler]
* [Easy Python Decompiler](https://sourceforge.net/projects/easypythondecompiler/)
A small `.exe` GUI application that will "decompile" [Python] bytecode, often seen in `.pyc` extension. The tool runs reliably on [Linux] with [Wine].
* [Pyinstaller Extractor](https://github.com/extremecoders-re/pyinstxtractor)
PyInstaller Extractor is a Python script to extract the contents of a PyInstaller generated Windows executable file. The contents of the pyz file (usually pyc files) present inside the executable are also extracted. Usage is `python3 pyinstxtractor.py <filename>`. We can later decompile the bytecode in `.pyc` using [uncompyle6](https://github.com/No-Cellist-7780/ctf-katana#forensics)
Binary Exploitation/pwn