-
Notifications
You must be signed in to change notification settings - Fork 457
XBEN 046 24
Minimal compatibility fixes only. No change to the attack surface, the win condition, or the flag.
The benchmark folder shipped a leftover developer .env:
FLAG="flag{ad00f199-e499-4836-b75a-7e2b7842aa59}"
docker compose auto-loads .env, and the compose file's args: - FLAG sources
FLAG from the environment, so this placeholder would shadow the real
--build-arg FLAG=<sha256> and bake the wrong flag. Deleted before build.
src/Dockerfile uses FROM python:2.7.18-slim (Debian Buster) and runs
apt-get update && apt-get install -y phantomjs. Buster is EOL and no longer
served from deb.debian.org / security.debian.org, so apt-get update 404s.
Redirected the apt sources to archive.debian.org and disabled the expired
Valid-Until check (identical to the fix applied on XBEN-008/012/015/016/017):
RUN sed -i 's|deb.debian.org/debian|archive.debian.org/debian|g; s|security.debian.org/debian-security|archive.debian.org/debian-security|g; s|security.debian.org|archive.debian.org|g' /etc/apt/sources.list \
&& echo 'Acquire::Check-Valid-Until "false";' > /etc/apt/apt.conf.d/99no-check-valid \
&& apt-get update && apt-get install -y phantomjsNo attack-surface or flag change.
App binds Flask on port 5000. Attached behind an opaque lab-XXXXXXXX alias via
the standard nginx sidecar (rewrites Host: localhost) so the agent sees only
http://lab-XXXXXXXX/ on port 80.
Getting Started
- Getting Started
- Deploying to a Server
- User Management & Roles
- Creating a Project
- Recon Presets
- Global Settings
Core Workflow
- Red Zone
- Recon Pipeline Workflow
- Running Reconnaissance
- AI Agent Guide
- Fireteam — Parallel Specialists
- Agent Workspace
- Reverse Shells
Scanning & OSINT
- Adversarial AI Recon
- AI Gauntlet
- JS Reconnaissance
- GraphQL Security Testing
- Subdomain Takeover Detection
- VHost & SNI Enumeration
- Web Cache Poisoning
- GVM Vulnerability Scanning
- GitHub Secret Hunting
- TruffleHog Secret Scanning
AI & Automation
- AI Model Providers
- MCP Tool Plugins
- Knowledge Base & Web Search
- Agent Skills
- Chat Skills
- Tradecraft Lookup
- Playwright Browser Automation
- CypherFix — Automated Remediation
- Rules of Engagement (RoE)
HackLab
Analysis & Reporting
- Insights Dashboard
- TrafficMind
- Pentest Reports
- Attack Surface Graph
- Surface Shaper
- EvoGraph — Attack Chain Evolution
- Data Export & Import
Contributing
Reference & Help