{"id":28338610,"url":"https://github.com/trivediayush/dvwa-application","last_synced_at":"2026-01-28T15:31:31.509Z","repository":{"id":288240944,"uuid":"967309939","full_name":"trivediayush/DVWA-Application","owner":"trivediayush","description":"Damn Vulnerable Web Application (DVWA) on a local Kubernetes cluster using Minikube and then simulate common web application attacks.","archived":false,"fork":false,"pushed_at":"2025-04-16T09:11:08.000Z","size":1136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-27T00:43:21.451Z","etag":null,"topics":["dvwa","kubernetes","minikube","security-lab"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trivediayush.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-16T08:58:58.000Z","updated_at":"2025-04-19T05:29:40.000Z","dependencies_parsed_at":"2025-04-20T06:00:38.679Z","dependency_job_id":null,"html_url":"https://github.com/trivediayush/DVWA-Application","commit_stats":null,"previous_names":["trivediayush/dvwa-application"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/trivediayush/DVWA-Application","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trivediayush%2FDVWA-Application","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trivediayush%2FDVWA-Application/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trivediayush%2FDVWA-Application/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trivediayush%2FDVWA-Application/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trivediayush","download_url":"https://codeload.github.com/trivediayush/DVWA-Application/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trivediayush%2FDVWA-Application/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28846341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dvwa","kubernetes","minikube","security-lab"],"created_at":"2025-05-27T00:34:05.386Z","updated_at":"2026-01-28T15:31:31.504Z","avatar_url":"https://github.com/trivediayush.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"🛡️ DVWA on Kubernetes - Local Security Lab\n===========================================\n\nThis project demonstrates how to deploy **Damn Vulnerable Web Application (DVWA)** on a local Kubernetes cluster using **Minikube** and then simulate common web application attacks.\n\n📸 Screenshots\n--------------\n\n*   Minikube Running:\n*   \u003cimg src=\"Screenshots/Cmd.png/\"\u003e\n*   \u003cimg src=\"Screenshots/cmd1.png/\"\u003e\n*   \u003cimg src=\"Screenshots/cmd3.png/\"\u003e\n\n*   DVWA Deployment: \n*   \u003cimg src=\"Screenshots/cmd4.png/\"\u003e\n\n*   Command Injection Result:\n*   \u003cimg src=\"Screenshots/dvwa1.png/\"\u003e\n\n*   SQL Injection Result:\n*   \u003cimg src=\"Screenshots/dvwa3.png/\"\u003e\n\n*   Stored XSS Alert:\n*   \u003cimg src=\"Screenshots/dvwa4.png/\"\u003e\n*   \u003cimg src=\"Screenshots/dvwa5.png/\"\u003e\n\n🛠 Setup Steps\n--------------\n\n### 1\\. Start Minikube\n\n    minikube start --driver=docker\n\n### 2\\. Create `dvwa.yaml`\n\n### 3\\. Apply the Configuration\n\n    kubectl apply -f dvwa.yaml\n\n### 4\\. Access DVWA\n\n    minikube service dvwa -n dvwa\n\nOpen the given URL (usually `http://192.168.49.2:30001`) in your browser.\n\n### 5\\. Login\n\n*   Username: `admin`\n*   Password: `password`\n\nGo to **DVWA Security** tab and set security level to `LOW`.\n\n🧪 Attack Demonstrations\n------------------------\n\n### 1️⃣ Command Injection\n\n*   Go to: **DVWA → Command Injection**\n*   Input: `127.0.0.1; whoami`\n*   Result: Displays container user like `www-data`\n\n### 2️⃣ SQL Injection\n\n*   Go to: **DVWA → SQL Injection**\n*   Input: `1' OR '1'='1`\n*   Result: Database returns all users bypassing login filters\n\n### 3️⃣ Stored Cross Site Scripting (XSS)\n\n*   Go to: **DVWA → Stored XSS**\n*   Input:\n    \n        \u003cscript\u003ealert('XSS attack!')\u003c/script\u003e\n    \n*   Result: Alert pops up when viewing the page\n\n🧹 Cleanup\n----------\n\nTo remove the deployment and stop the cluster:\n\n    kubectl delete namespace dvwa\n    minikube stop\n\n📚 References\n-------------\n\n*   [DVWA GitHub](https://github.com/ethicalhack3r/DVWA)\n*   [OWASP Attack References](https://owasp.org/www-community/attacks/)\n\n* * *\n\nCreated for practicing security testing.\n\n📌 Author\n-------------\n# Ayush Trivedi\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrivediayush%2Fdvwa-application","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrivediayush%2Fdvwa-application","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrivediayush%2Fdvwa-application/lists"}