Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:2
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
ENTRYPOINT ["python2", "python_exe_unpack.py"]

13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,18 @@ A script that helps researcher to unpack and decompile executable written in pyt

This script glues together several tools available to the community. Hopefully, this can help people in their daily job. Several YARA rules are available to determine if the executable is written in python (This script also confirms if the executable is created with either py2exe or pyinstaller).

## Requirements
## Requirements & Install


### Docker

Build the image with: `docker build -t python_exe_unpack .`
Run the image with: `docker run --rm -it -v $(pwd):/data python_exe_unpack`

Your current dir will be exposed as `/data` in the container...


### Manual Install
- Python 2.7 or later.
- Install all the dependency needed:<br/>
`pip2 install --user -r requirements.txt`<br/>
Expand Down