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
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM golang:alpine

COPY . /app

WORKDIR /app

RUN go install github.com/trap-bytes/gourlex@latest

ENTRYPOINT ["gourlex"]
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,22 @@ It can be helpful during web application assessments to uncover additional targe
```
go install github.com/trap-bytes/gourlex@latest
```
##### Docker Image Setup
```
docker build -t gourlex .
```


## Usage:

```
gourlex -h
```
##### Run With Docker

```
docker run gourlex -h
```

This will display help for the tool. Here are all the arguments it supports.

Expand Down