Run an SSL-enabled Damn Vulnerable Web App.
Why?
You might want to test web attack detections over SSL.
docker build -t dvwassl:latest .
docker run -d -p 443:443 dvwassl:latest
The image comes with pre-generated SSL certificate and key. You can also use your own or generate new ones:
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 365 -nodes
Then, run the container:
docker run -d -p 443:443 -v $(pwd)/cert.pem:/etc/apache2/cert.pem -v $(pwd)/key.pem:/etc/apache2/key.pem dvwassl:latest
To login you can use the following credentials:
- Username: admin
- Password: password
You can visit DVWA official github repository if you want more information.
This or previous program is for Educational purpose ONLY. Do not use it without permission. The usual disclaimer applies, especially the fact that me (opsxcq) is not liable for any damages caused by direct or indirect use of the information or functionality provided by these programs. The author or any Internet provider bears NO responsibility for content or misuse of these programs or any derivatives thereof. By using these programs you accept the fact that any damage (dataloss, system crash, system compromise, etc.) caused by the use of these programs is not opsxcq's responsibility.