| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Damn Vulnerable API (DVAPI) is an intentionally vulnerable API application designed for learning, practicing, and testing API security concepts.
The project provides a realistic development environment where developers and security researchers can explore common API vulnerabilities in a safe and controlled setup.
git clone <repo-url> DVAPI
cd DVAPImake upThat starts everything, sets up the database, and loads sample data.
Stop everything with:
make downTo wipe database and cache volumes as well:
make clean| Component | Purpose | Local Port |
|---|---|---|
| Frontend | Vue.js web application | 5173 |
| Backend | Go-based REST API | 8080 |
| Library Service | Flask helper | 5000 |
| PostgreSQL | Primary relational database | 5433 |
| Redis | In-memory cache and session store | 6380 |
| MailHog | Local SMTP server and email testing UI | 1025 |
| Loki | Centralized log aggregation | 3100 |
| Grafana | Monitoring and log visualization (anonymous admin access) | 3001 |
make up # start everything (build if needed), migrate, seed
make down # stop and remove containers
make ps # what’s running?
make logs # follow all logs
make clean # stop and wipe database/cache datamake dev does the same thing as make up.
make migrate-up # apply new schema changes
make migrate-down # undo the last change
make migrate-status # see migration stateThe stack must already be up (make up).
make seed # load all default sample data
make seed ARGS="users" # only users
make seed ARGS="courses enrollments"
make seed-status # what’s already loaded?Default seed sets: users, courses, enrollments, assignments, submissions, announcements.
make rebuild # rebuild images from scratch
make prune # remove containers, data volumes, and local images
make backend-shell # shell inside the backend container
make db-shell # open a database promptRun make help for the full list.
DVAPI intentionally includes vulnerabilities across multiple attack surfaces and protocols to simulate realistic API security challenges.
Note: Specific vulnerabilities and exploitation paths are intentionally undocumented. Discovering and exploiting them is part of the learning experience.
| Back | FazBrowse Home | New Git URL |