https://github.com/ilyaglow/dockerfiles
🌊 Dockerfiles for apps I use. Also take a look at https://github.com/security-dockerfiles
https://github.com/ilyaglow/dockerfiles
cortex cve-2018-15473 dockerfile echoip fi6s gopkg goproxy jq manalyze misp quicksand socksproxy squid thehive tor wfuzz whatweb ysoserial
Last synced: 11 months ago
JSON representation
🌊 Dockerfiles for apps I use. Also take a look at https://github.com/security-dockerfiles
- Host: GitHub
- URL: https://github.com/ilyaglow/dockerfiles
- Owner: ilyaglow
- License: gpl-3.0
- Created: 2017-12-19T13:40:04.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-24T13:05:58.000Z (about 5 years ago)
- Last Synced: 2025-03-17T10:23:46.962Z (11 months ago)
- Topics: cortex, cve-2018-15473, dockerfile, echoip, fi6s, gopkg, goproxy, jq, manalyze, misp, quicksand, socksproxy, squid, thehive, tor, wfuzz, whatweb, ysoserial
- Language: Dockerfile
- Homepage:
- Size: 93.8 KB
- Stars: 22
- Watchers: 4
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
About
-----
Dockerized apps I use. This readme is updated occasionally, so better look at the name of the folders in the repository.
Also checkout the [securuity-dockerfiles](https://github.com/security-dockerfiles) organization where I try to consolidate all new dockerfiles I use.
## Penetration testing
### wfuzz
Link: https://github.com/xmendez/wfuzz
Image: `ilyaglow/wfuzz`
Usage example:
```
docker run -it --rm -v /path/to/wordlists:/wordlists ilyaglow/wfuzz -c -w /wordlists/list.txt --hc=404 https://url/FUZZ
```
### WhatWeb
Link: https://github.com/urbanadventurer/WhatWeb
Image: `ilyaglow/whatweb`
Usage example:
```
docker run -it --rm ilyaglow/whatweb -v https://github.com
```
### ysoserial
Link: https://github.com/frohoff/ysoserial
Image: `ilyaglow/ysoserial`
Usage example:
```
docker run -it --rm ilyaglow/ysoserial CommonsCollections1 'curl trap.domain.com'
```
## Misc
### jq
Link: https://github.com/stedolan/jq
Image: `ilyaglow/jq`
Usage example:
```
< some.json docker run -i rm ilyaglow/jq -r '.field'
```
### Squid
Link: https://github.com/squid-cache/squid
Image: `ilyaglow/squid`
Usage example:
```
docker run -d -v your-squid.conf:/etc/squid/squid.conf -p 3128:3128 ilyaglow/squid
```