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
dvcsharp-api — Damn Vulnerable C# Application (API) | Kitploit
Tools/GitHubGitHub/appsecco/dvcsharp-api
Vulnerability AnalysisWeb Application ExploitationAPI Security TestingPenetration TestingLearning & EducationLabs & Practice
GitHubappsecco/dvcsharp-api

dvcsharp-api

Damn Vulnerable C# Application (API)

View Repository
852892 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Website

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.

Docker

root@kitploit:~
docker-compose up

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