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
simple-maven | Kitploit
Tools/GitHubGitHub/mindpatch/simple-maven
Vulnerability AnalysisWeb Application ExploitationAPI Security TestingPenetration TestingLearning & EducationLabs & Practice
GitHubmindpatch/simple-maven

simple-maven

View Repository
21 year 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

Damn Vulnerable C# Application (API Only)

Getting Started

Note: This is a deliberately vulnerable app, please do not host it on production or Internet/public facing servers. Use with caution. kk

Docker

test

root@kitploit:~
docker-compose up 

tets

Manual

Install .NET Core 2.x SDK Microsoft .NET Core SDK

Install dependencies and migrate database:

root@kitploit:~
dotnet restore
dotnet ef database update

Start application server:

root@kitploit:~
dotnet run

Start application server with watcher for auto-reload on change:

root@kitploit:~
dotnet watch run

Build Docker

  • To build a docker image run the following command
root@kitploit:~
docker build -t appsecco/dvcsharp .
  • To run the docker container
root@kitploit:~
docker run -d --name dvcsharp -it -p 5000:5000 appsecco/dvcsharp

Solution

The documentation-dvcsharp-book folder has instructions to use the app and exploit vulnerabilities that have been programmed.

Download Tool