Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker Created #152

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM ubuntu:16.04
MAINTAINER Furkan SAYIM <[email protected]>

RUN apt-get update \
&& apt-get install git -y \
&& apt-get install python -y \
&& apt-get install python-pip -y
RUN git clone https://github.com/jofpin/trape.git /tmp/trape

WORKDIR /tmp/trape

RUN pip install -r requirements.txt

ENTRYPOINT ["python", "trape.py"]
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,20 @@ Session recognition is one of trape most interesting attractions, since you as a
* **USABILITY:** You can delete logs and view alerts for each process or action you run against each target.

![](https://lh4.googleusercontent.com/dXx1lRG2z-ZlSIlQyTx_ra7sbkgKG2jeqGjIt86GebFiAaZyFDA4vy3QBLACd-1wOz4zdSIARWvo3hK2mEvrSJ6VPDSiOZgMLB4rUYXKDHrone0xIB3bwhAKPnsJUcuKW9xf_-sG)

### Docker Build

```
$ docker build -t xshuden/trape .
```

### Docker Usage

```
$ docker run --rm -it xshuden/trape
$ docker run --rm -it xshuden/trape --url http://example.com --port 8080
```


How to use it
-------
Expand Down