Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
dvwassl — SSL-enabled Damn Vulnerable Web App (DVWA) | Kitploit
Tools/GitHubGitHub/peco602/dvwassl
Web SecurityPenetration TestingLearning & EducationLabs & Practice
GitHubpeco602/dvwassl

dvwassl

SSL-enabled Damn Vulnerable Web App (DVWA)

View Repository
643 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Push Mentioned in awesome-docker

SSL-enabled Damn Vulnerable Web App

Run an SSL-enabled Damn Vulnerable Web App.

Why?

You might want to test web attack detections over SSL.

Build the image

root@kitploit:~
docker build -t dvwassl:latest .

Run the container

root@kitploit:~
docker run -d -p 443:443 dvwassl:latest

Custom SSL certificate and key

The image comes with pre-generated SSL certificate and key. You can also use your own or generate new ones:

root@kitploit:~
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -sha256 -days 365 -nodes

Then, run the container:

root@kitploit:~
docker run -d -p 443:443 -v $(pwd)/cert.pem:/etc/apache2/cert.pem -v $(pwd)/key.pem:/etc/apache2/key.pem dvwassl:latest

Login with default credentials

To login you can use the following credentials:

  • Username: admin
  • Password: password

About DVWA

You can visit DVWA official github repository if you want more information.

Disclaimer

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.

DockerHub

  • peco602/dvwassl
Download Tool