Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tmolnar0831 committed Jan 14, 2024
0 parents commit 458937e
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
wordlists
9 changes: 9 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM debian:bookworm

LABEL maintaner = "Tamas Molnar <tmolnar0831@gmail.com> - https://tomsitcafe.com"

RUN apt-get update && apt-get install -y dirb && mkdir /wordlists

VOLUME [ "/wordlists" ]

ENTRYPOINT [ "dirb" ]
34 changes: 34 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Dirb container

Dirb container installed on a Debian.

**Q:** Why is it better than installing it?

**A:** It's not better, it's just quick and practical.

## Build the container

To build the image simply use the `Containerfile`.

```bash
podman build -f Containerfile -t dirb
```

## Usage

Using the image is simple.

1. Create a directory with the wordlist files.
1. Run the container with Docker or Podman.

```bash
podman run --rm --volume ./wordlists:/wordlists dirb:latest http://URL:PORT /wordlists/file.txt
```

## License

MIT

## Author

Tamas Molnar - <tmolnar0831@gmail.com> - <https://tomsitcafe.com>

0 comments on commit 458937e

Please sign in to comment.