Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
moisestapia committed Aug 20, 2021
1 parent 7a8100b commit dab11ae
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ before_install:
- docker pull bkimminich/juice-shop
- docker pull citizenstig/owaspbricks
- docker pull bltsec/mutillidae-docker

- docker pull google/cadvisor
script:
- docker-compose up -d
- docker-compose ps
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#### Trainig| Web Application Penetration Testing

![docker](https://img.shields.io/badge/Docker-v19.03.12-blue?style=plastic&logo=docker)
![Maintainer](https://img.shields.io/badge/Maintainer-Equinockx-success?style=plastic&logo=terraform)
![Maintainer](https://img.shields.io/badge/Maintainer-m4dh4tt3r-success?style=plastic&logo=terraform)
[![Build Status](https://img.shields.io/badge/Build-success?style=plastic&logo=travis)](https://travis-ci.com/MoisesTapia/TWAPT)
![Build Status](https://travis-ci.com/MoisesTapia/TWAPT.svg?branch=deploy)
# Requirements
Expand All @@ -19,6 +19,15 @@
- [X] NinjaWeb : localhost:8899
- [X] VulnWordpress : localhost:8086

## Monitoring

You can monitoring your services or containers with cAdvisor this is a new integration.
just you follow the next steps:
1 Open your Browser.
2 In the search bar write `localhost:8085`.
3 Done you can see the information about your containers.

locañhost:8085

## Usage mode.

Expand Down
25 changes: 25 additions & 0 deletions docker-compose.override.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version: '3.7'



networks:
default:
external: true
name: pentesting

services:

cadvisor:
image: google/cadvisor
volumes:
- /:/rootfs:ro
- /var/run:/var/run:rw
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
ports:
- 8085:8080
restart: always
mem_limit: 200m
cpus: 0.5
networks:
- pentesting
16 changes: 16 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ services:
container_name: vulwps
image: l505/vulnerablewordpress
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8086:80
- 3306:3306
Expand All @@ -29,6 +31,8 @@ services:
container_name: ninjaweb
image: opendns/security-ninjas
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8899:80
networks:
Expand All @@ -39,6 +43,8 @@ services:
container_name: webgoat
image: webgoat/webgoat-8.0
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8080:8080
volumes:
Expand All @@ -51,6 +57,8 @@ services:
container_name: dvwap
image: vulnerables/web-dvwa
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8081:80
volumes:
Expand All @@ -63,6 +71,8 @@ services:
container_name: bwapp
image: feltsecure/owasp-bwapp
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8082:80
volumes:
Expand All @@ -75,6 +85,8 @@ services:
container_name: juiceshop
image: bkimminich/juice-shop
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8083:3000
networks:
Expand All @@ -84,6 +96,8 @@ services:
container_name: bricks
image: citizenstig/owaspbricks
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8084:80
networks:
Expand All @@ -93,6 +107,8 @@ services:
container_name: owasp17
image: bltsec/mutillidae-docker
restart: on-failure
mem_limit: 200m
cpus: 0.5
ports:
- 8088:80
- 443:443
Expand Down

0 comments on commit dab11ae

Please sign in to comment.