{"id":51016013,"url":"https://github.com/akintunero/idanairline","last_synced_at":"2026-06-21T10:31:10.591Z","repository":{"id":361955214,"uuid":"994218241","full_name":"akintunero/idanairline","owner":"akintunero","description":"A deliberately vulnerable airline booking platform built to practice OWASP API Security Top 10 vulnerabilities","archived":false,"fork":false,"pushed_at":"2026-06-02T00:25:04.000Z","size":4282,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-02T02:08:16.307Z","etag":null,"topics":["api-security","ctf","cybersecurity","docker","golang","python","reactjs","vulnerable-app","vulnerable-apps"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/akintunero.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-01T13:29:42.000Z","updated_at":"2026-06-02T00:25:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/akintunero/idanairline","commit_stats":null,"previous_names":["akintunero/idanairline"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/akintunero/idanairline","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akintunero%2Fidanairline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akintunero%2Fidanairline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akintunero%2Fidanairline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akintunero%2Fidanairline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akintunero","download_url":"https://codeload.github.com/akintunero/idanairline/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akintunero%2Fidanairline/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34607126,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-21T02:00:05.568Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api-security","ctf","cybersecurity","docker","golang","python","reactjs","vulnerable-app","vulnerable-apps"],"created_at":"2026-06-21T10:31:09.455Z","updated_at":"2026-06-21T10:31:10.584Z","avatar_url":"https://github.com/akintunero.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Idan Airlines CTF (v1.1)\n\nWelcome to the **Idan Airlines** security laboratory — a deliberately vulnerable microservices airline booking platform for red-team training, API security auditing, and OWASP API Top 10 practice.\n\n\u003e **Warning:** This application is intentionally insecure. Run it only in an isolated local environment. Do not deploy to the public internet or use it as a production template.\n\n## Scenario\n\nYou have been hired to perform a **black-box** security assessment of Idan Airlines' booking platform. The airline recently moved to a microservices architecture and wants its API ecosystem tested. Your job is to find flaws, chain them where possible, and collect **stealth keys** (hashes) from successful exploit traces in raw HTTP traffic — the UI will not reveal them.\n\n## Rules of engagement\n\n- **Black-box:** No backend source documentation is provided to players.\n- **Scope:** All services started by this repository's Docker Compose stack at [http://localhost:8080](http://localhost:8080) and its `/api/*` routes.\n- **Goal:** Identify and document issues aligned with the [OWASP API Security Top 10 (2023)](https://owasp.org/API-Security/editions/2023/en/0x00-header-part-2/).\n- **Ethics:** Authorized local lab use only.\n\n## Getting started\n\n### Prerequisites\n\n- [Docker](https://docs.docker.com/get-docker/) and [Docker Compose](https://docs.docker.com/compose/install/) v2+\n- [Burp Suite](https://portswigger.net/burp/) or [OWASP ZAP](https://zaproxy.org/) (recommended)\n- [curl](https://curl.se/) or [Postman](https://www.postman.com/)\n- [Node.js](https://nodejs.org/) 20+ (optional — only if developing the frontend locally)\n\n### Quick start\n\n```bash\n# 1. Clone the repository\ngit clone https://github.com/akintunero/idanairline.git\ncd idanairline\n\n# 2. Start all services\nmake up\n# or: docker compose up --build -d\n\n# 3. Open in your browser\nopen http://localhost:8080\n```\n\n4. **Verify the stack** (optional)\n\n   ```bash\n   make smoke\n   ```\n\n   You should be able to browse the site and walk through search, booking, login, and registration flows.\n\n## Architecture (high level)\n\n```\nBrowser → Nginx (:8080) → React frontend\n                        → API Gateway → booking-api\n                                        → payment-api\n                                        → user-api\n```\n\nBackend services run on an internal Docker network. All player traffic enters through port **8080**.\n\n## Troubleshooting and operations\n\n### View logs\n\n```bash\nmake logs\n```\n\nOr:\n\n```bash\ndocker compose logs -f\n```\n\n### Reset lab data\n\nStopping containers does not wipe persisted challenge state. For a full reset:\n\n```bash\nmake down\nrm -rf ctf-data/\nmake up\n```\n\n### Payment service unavailable\n\nSome exploits intentionally disrupt the payment service. If charges fail across the board, restart the stack:\n\n```bash\nmake down \u0026\u0026 make up\n```\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Security\n\nSee [SECURITY.md](SECURITY.md) for reporting unintentional bugs.\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakintunero%2Fidanairline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakintunero%2Fidanairline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakintunero%2Fidanairline/lists"}