KO
|
EN
gitlite โ search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
dvcsharp-api
โ 85
Open GitHub โ
Damn Vulnerable C# Application (API)
Download README (.md)
Explore Similar Repositories
okta-spring-boot-2-angular-7-example
:
A Cool Cars Example that showcases Spring Boot 2.1, Angular 7, and Okta's support for both.
fake-survey-generator
:
A slightly more-than-trivial full-stack application built with DDD & CQRS concepts
apollo-prophecy
:
๐ฎ GraphQL error management made Easy, generate custom machine-readable errors for Apollo Client/Server from the CLI
router
:
Ingress controller for OpenShift
akka-ddd-cqrs-es-example
:
Bank API CQRS Event Sourcing System on Akka-Cluster (Concept Model)
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
dvcsharp-api
?
Download (.md)
# 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 ``` docker-compose up ``` ### Manual Install .NET Core 2.x SDK [Microsoft .NET Core SDK](https://www.microsoft.com/net/download/macos) Install dependencies and migrate database: ``` dotnet restore dotnet ef database update ``` Start application server: ``` dotnet run ``` Start application server with watcher for auto-reload on change: ``` dotnet watch run ``` ## Build Docker * To build a docker image run the following command ```bash docker build -t appsecco/dvcsharp . ``` * To run the docker container ```bash docker run -d --name dvcsharp -it -p 5000:5000 appsecco/dvcsharp ``` ## Solution The [documentation-dvcsharp-book](./documentation-dvcsharp-book) folder has instructions to use the app and exploit vulnerabilities that have been programmed.