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
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.git
.github
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM python:3.7-alpine

# Create the non-root user up front to save a little time on rebuilds.
RUN adduser --gecos '' --disabled-password app

COPY requirements.txt requirements.txt

# it is better to chain commands to reduce the number of created layers
RUN pip install --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt

# Switch to the user "app"
USER app
WORKDIR /home/app
COPY . .

ENTRYPOINT ["python3", "pwnxss.py"]


13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,19 @@ Advanced usage:
python3 pwnxss.py --help
```

## Usage with Docker

Building the Docker image from the Dockerfile:
```
docker build -t pwnxss .
````

And then running the container that will execute the pwnxss.py script:

```
docker run pwnxss -u http://testphp.vulnweb.com
```

## Main features

* crawling all links on a website ( crawler engine )
Expand Down