https://github.com/extremecoders-re/nuitka-extractor
Tool to extract nuitka compiled executables
https://github.com/extremecoders-re/nuitka-extractor
extractor nuitka python unpacker
Last synced: 11 days ago
JSON representation
Tool to extract nuitka compiled executables
- Host: GitHub
- URL: https://github.com/extremecoders-re/nuitka-extractor
- Owner: extremecoders-re
- License: mit
- Created: 2023-07-03T15:33:37.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-21T08:26:32.000Z (10 months ago)
- Last Synced: 2024-11-05T02:36:15.903Z (5 months ago)
- Topics: extractor, nuitka, python, unpacker
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 72
- Watchers: 5
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-python-re - nuitka-extractor - An extractor for nuitka. This basically does the same thing as looking in the `temp` folder, but without actually running the executable. (Extractors / Manual analysis)
README
# Nuitka Extractor
Nuitka extractor is a tool to extract nuitka compiled Python executables. In particular only onefile (single file) executables are supported. The tool can extract both Windows PE as well as Linux ELF binaries.
Nuitka compiles Python code to native code. A nuitka compiled executable doesn't contain pyc file. Hence this tool can only extract DLLs, shared libraries and other binary assets embedded in the executable.
## Usage
Precompiled binaries can be downloaded from releases.
Simply pass the path to the file as an argument.
```
$ ./nuitka-extractor
``````
X:\> nuitka-extractor.exe
```## ToDo
- Signed PE execuables are not yet supported. Strip the certificate before extraction.
- Support for executables with a hardcoded extraction directory. For such executables, nuitka includes the crc32 of each embedded file within the payload. Thus the payload format is slightly changed.## License
Nuitka extractor is released under the MIT license.