https://github.com/mindpatch/simple-maven
https://github.com/mindpatch/simple-maven
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mindpatch/simple-maven
- Owner: MindPatch
- License: mit
- Created: 2024-08-06T08:05:32.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-26T03:15:02.000Z (over 1 year ago)
- Last Synced: 2025-05-29T11:39:45.708Z (about 1 year ago)
- Language: C#
- Size: 892 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# 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
```
docker-compose up
```
# tets
### 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.