C#
ASP.NET Core
Section titled “ASP.NET Core”ASP.NET Core is a cross-platform, high-performance, open-source framework for building modern, cloud-enabled, Internet-connected apps. It is developed by Microsoft.
Popularity: ASP.NET Core is the most popular .NET web application framework, according to StackOverflow’s 2022 Developer Survey.
- Description: Damn Vulnerable C# (Asp.Net core) application
- Source Code: https://github.com/codeFather2/dvcsa
- Findings: Cross Site Scripting, SQL Injection, Leaking Passwords
- Credentials: None
git clone https://github.com/codeFather2/dvcsa.gitcd dvcsa
# Run the applicationdocker-compose up -d
# Run a scannightvision target create dvcsa http://localhost:8999 --type apinightvision swagger extract . -t dvcsa --lang dotnetnightvision scan dvcsaNote you can run the check-endpoint.sh script to demonstrate the vulnerabilities.
Vulnerable Core App
Section titled “Vulnerable Core App”- Description: This project is a Vulnerable ASP.NET Core 2.0 Web Application.
- Source Code: https://github.com/vulnerable-apps/VulnerableCoreApp
- Findings: Cross Site Scripting
- Credentials: None
git clone https://github.com/vulnerable-apps/VulnerableCoreAppcd VulnerableCoreApp/
# Run the applicationdocker-compose up -d
# Run a scannightvision target create VulnerableCoreApp http://localhost:5000 --type webnightvision scan VulnerableCoreApp