https://github.com/anir0y/vwa_docker
vulnerable web application
https://github.com/anir0y/vwa_docker
vulnerable-application
Last synced: 6 months ago
JSON representation
vulnerable web application
- Host: GitHub
- URL: https://github.com/anir0y/vwa_docker
- Owner: anir0y
- Created: 2021-10-06T14:36:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-07-30T15:48:12.000Z (almost 2 years ago)
- Last Synced: 2024-07-30T19:55:30.623Z (almost 2 years ago)
- Topics: vulnerable-application
- Language: PHP
- Homepage: https://hub.docker.com/r/anir0y/vwa
- Size: 111 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Status:
[](https://github.com/anir0y/vwa_docker/actions/workflows/docker-image.yml)
# VWA Lab for Classroom Training
this lab is designed and developved by @anir0y this is a way to teach students about common mistakes made by devs
# setting up local web-application server
# 1 : setting up [LAMP stack](https://notes.anir0y.in/ubuntu-installing-lamp-stack)
LAMP stack is stands for:
* Linux
* Apache (apache2)
* MySQL (db)
* Php (scripting Lang.)
## Docker
```bash
docker pull anir0y/vwa
Using default tag: latest
latest: Pulling from anir0y/vwa
...
Status: Downloaded newer image for anir0y/vwa:latest
docker.io/anir0y/vwa:latest
# verify
docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
anir0y/vwa latest 015c231e4df8 19 minutes ago 719MB
# run the app
docker run -d -p 80:80 anir0y/vwa
```
## Local Build
```docker
docker build -t vwalocal .
docker run -p 80:80 vwalocal
```
check `https://dashboard.ngrok.com/tunnels/agents` agents page to get the URL for ngrok
### Talk to me
- mail@anir0y.in
- https://twitter.com/anir0y
---