forked from owtf/owtf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OWTF-IG comprehensive update on Enumeration and Discovery (owtf#1283)
* Added dirsearch, capabilities for nmap, zip, unzip for SecLists * Added capabilities for container in compose file * Added dirsearch and SecLists entries * Force rebuild of new container (for new versions) * Fixing dirsearch virtual env issues. Typo in resources.cfg * Move dirsearch installation from Dockerfile to install script * Fixing tools custom installation * Allow user to build owtf container with and without permissive network capabilities * Adjust tools' configurations and running commands * Fixing requests package version conflict between owtf and dirsearch
- Loading branch information
1 parent
cfb8e6b
commit 402f8f8
Showing
9 changed files
with
97 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
version: "3.3" | ||
services: | ||
owtf: | ||
cap_add: | ||
- CAP_NET_RAW | ||
- CAP_NET_ADMIN | ||
restart: always | ||
build: | ||
context: .. | ||
dockerfile: docker/Dockerfile | ||
command: ["/usr/bin/wait-for-it.sh", "db:5432", "--", "owtf"] | ||
environment: | ||
- DOCKER=1 | ||
- POSTGRES_USER=owtf_db_user | ||
- POSTGRES_PASSWORD=jgZKW33Q+HZk8rqylZxaPg1lbuNGHJhgzsq3gBKV32g= | ||
- POSTGRES_DB=owtf_db | ||
ports: | ||
- 8008:8008 | ||
- 8010:8010 | ||
- 8009:8009 | ||
depends_on: | ||
- db | ||
volumes: | ||
- ..:/owtf | ||
db: | ||
image: postgres:alpine | ||
ports: | ||
- 5432:5432 | ||
environment: | ||
- POSTGRES_USER=owtf_db_user | ||
- POSTGRES_PASSWORD=jgZKW33Q+HZk8rqylZxaPg1lbuNGHJhgzsq3gBKV32g= | ||
- POSTGRES_DB=owtf_db |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.