CVE-2021-3156 — Baron Samedit
Desbordamiento de búfer basado en heap en sudo → Escalada local de privilegios
Departamento de Ciberseguridad ITSOLERA | Prácticas de Red Team 2026
██████╗ █████╗ ██████╗ ██████╗ ███╗ ██╗ ███████╗ █████╗ ███╗ ███╗███████╗██████╗ ██╗████████╗
██╔══██╗██╔══██╗██╔══██╗██╔═══██╗████╗ ██║ ██╔════╝██╔══██╗████╗ ████║██╔════╝██╔══██╗██║╚══██╔══╝
██████╔╝███████║██████╔╝██║ ██║██╔██╗ ██║ ███████╗███████║██╔████╔██║█████╗ ██║ ██║██║ ██║
██╔══██╗██╔══██║██╔══██╗██║ ██║██║╚██╗██║ ╚════██║██╔══██║██║╚██╔╝██║██╔══╝ ██║ ██║██║ ██║
██████╔╝██║ ██║██║ ██║╚██████╔╝██║ ╚████║ ███████║██║ ██║██║ ╚═╝ ██║███████╗██████╔╝██║ ██║
╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═════╝ ╚═╝ ╚═╝
⚠️ SOLO PARA USO EDUCATIVO / LABORATORIO AISLADO
Todas las pruebas deben realizarse exclusivamente dentro del contenedor de laboratorio Docker.
Nunca ejecutar contra sistemas reales, de producción o compartidos.
Tabla de contenidos
- Resumen de la CVE
- Qué hace especial a esta CVE
- Estructura del proyecto
- Entregables del equipo
- Inicio rápido
- Cómo funciona el exploit
- Prueba canario de vulnerabilidad
- Uso de exploit.py
- Restablecimiento e instantánea del laboratorio
- Comparación: parcheado vs vulnerable
- Referencias
Resumen de la CVE
Qué hace especial a esta CVE
Idea clave: el desbordamiento ocurre en set_cmnd() — la función que analiza los argumentos — que se ejecuta antes de que sudo consulte /etc/sudoers. Una cuenta creada hace 10 segundos con cero permisos puede explotar esto.
Estructura del proyecto
CVE-2021-3156-Project/
│
├── README.md ← you are here
│
├── lab/ ← Member 1: Lab Environment
│ ├── Dockerfile ← Ubuntu 20.04 + sudo 1.8.31 (pinned)
│ ├── docker-compose.yml ← vulnerable target + patched reference
│ ├── evidence_helper.sh ← pre/post-exploit state capture
│ ├── SETUP.md ← step-by-step VM/Docker guide
│ └── config_notes.md ← CVE conditions & container details
│
├── exploit/ ← Member 2: Exploit Development
│ ├── exploit.py ← Python LPE framework + canary test
│ └── payloads.txt ← heap overflow research notes
│
├── docs/ ← Member 3: Research & Documentation
│ ├── root_cause_analysis.md ← set_cmnd() deep dive + off-by-one
│ ├── references.md ← all sources, PoCs, CWE mapping
│ └── mitigation.md ← sudo upgrade + hardening checklist
│
├── proof/ ← Member 4: Evidence Collection
│ ├── screenshots/ ← exploitation screenshots
│ └── terminal_logs.txt ← command output template + logs
│
└── report/
└── CVE-2021-3156_Report.docx ← Member 4: Final professional report
Entregables del equipo
Miembro 1 — Entorno de laboratorio y verificación de la CVE
Miembro 2 — Desarrollo del exploit (script PoC)
Nota: el código funcional del exploit de kernel/heap no se incluye según las pautas éticas.
Los stubs TODO de exploit.py referencian https://github.com/blasty/CVE-2021-3156
y https://github.com/worawit/CVE-2021-3156 como los PoC públicos de referencia
que tu equipo debe estudiar e integrar.
Miembro 3 — Análisis de causa raíz e investigación
| Archivo | Descripción |
|---|
proof/terminal_logs.txt | Plantilla de recopilación de evidencia (completar con la salida real del laboratorio) |
proof/screenshots/ | Directorio para las 7 capturas de pantalla requeridas |
report/CVE-2021-3156_Report.docx |
Inicio rápido
1. Construir e iniciar el laboratorio
cd CVE-2021-3156-Project/lab/
# Build the vulnerable image (downloads Ubuntu 20.04, pins sudo 1.8.31)
docker compose build
# Start both containers
docker compose up -d
# Confirm containers are running
docker compose ps
Esperado:
NAME STATUS
baron_samedit_target running
baron_samedit_patched running
2. Entrar en el contenedor vulnerable
docker exec -it baron_samedit_target bash
3. Confirmar las condiciones de vulnerabilidad
# Inside the container as labuser
whoami # Expected: labuser
id # Expected: uid=1000(labuser)...
sudo --version # Expected: Sudo version 1.8.31
sudo -l # Expected: Sorry, user labuser may not run sudo...
sudoedit -s '\' 2>&1 # Expected: NOT "usage:" → VULNERABLE
4. Copiar y ejecutar el exploit
# From host machine
docker cp exploit/exploit.py baron_samedit_target:/home/labuser/
# Inside container
python3 exploit.py --check-only # verify all prerequisites pass
python3 exploit.py --safe-mode # canary only, no exploitation
python3 exploit.py --cmd "id" # LPE → show root identity
python3 exploit.py --cmd "whoami /all" --output /tmp/proof.txt
5. Capturar evidencia
# Inside container — before exploit
~/evidence_helper.sh > /tmp/before.txt
# After exploit
~/evidence_helper.sh > /tmp/after.txt
# Copy to host
docker cp baron_samedit_target:/tmp/before.txt proof/terminal_logs_before.txt
docker cp baron_samedit_target:/tmp/after.txt proof/terminal_logs_after.txt
Cómo funciona el exploit
Step 1: Run 'sudoedit -s <crafted_argument>'
↓
Step 2: sudo calls set_cmnd() to parse arguments in shell mode
↓
Step 3: set_cmnd() COUNTS bytes for the cmnd_args buffer (correct size)
↓
Step 4: set_cmnd() COPIES bytes — but reads 1 byte past the null
terminator of any argument ending with '\'
↓
Step 5: Off-by-one overflow writes 1 unexpected byte beyond cmnd_args
↓
Step 6: Heap grooming (environment variable layout manipulation) ensures
a valuable sudo struct sits adjacent to the overflowed buffer
↓
Step 7: The overflow byte corrupts a pointer in the adjacent struct
↓
Step 8: sudo follows the corrupted pointer → executes attacker-controlled
command (via SUDO_EDITOR) with root privileges
↓
Result: uid=0(root) — from a user with ZERO sudo permissions
La causa raíz en una línea
size_calculation("A\") = 2 bytes ≠ copy("A\") = writes 3 bytes → overflow
Prueba canario de vulnerabilidad
La forma más segura de confirmar que CVE-2021-3156 está presente — sin necesidad de explotación:
sudoedit -s '\' 2>&1; echo "Exit: $?"
Uso de exploit.py
Usage: python3 exploit.py [OPTIONS]
Modes (mutually exclusive):
--check-only Run all pre-checks only — no exploitation
--safe-mode Run canary test only — confirm vulnerability
--cmd COMMAND Execute COMMAND as root after successful LPE
Options:
--verbose, -v Show detailed heap/system debug output
--output, -o FILE Save all output to FILE
--no-colour Disable ANSI colour codes (for log files)
--help Show this help message
Examples:
python3 exploit.py --check-only
python3 exploit.py --safe-mode
python3 exploit.py --cmd "id"
python3 exploit.py --cmd "cat /etc/shadow" --output proof/root_output.txt
python3 exploit.py --cmd "whoami" --verbose
Comprobaciones previas
Restablecimiento e instantánea del laboratorio
Restablecimiento rápido (conserva el contenedor, limpia los archivos temporales)
docker exec baron_samedit_target bash -c "rm -f /tmp/*.txt /tmp/exploit* /home/labuser/exploit.py"
Guardar una instantánea
docker commit baron_samedit_target baron-samedit:clean-state
echo "[+] Snapshot saved as baron-samedit:clean-state"
Restaurar la instantánea
docker compose down
docker run -it --name baron_samedit_target baron-samedit:clean-state bash
Restablecimiento completo (reconstruir desde cero)
docker compose down -v
docker compose up -d --build
Comparación: parcheado vs vulnerable
Para probar en el contenedor parcheado:
docker exec -it baron_samedit_patched bash
# Then repeat the canary test — should output "invalid argument"
Referencias
Aviso ético
┌─────────────────────────────────────────────────────────────────┐
│ This project was created for EDUCATIONAL PURPOSES ONLY as │
│ part of the ITSOLERA Cybersecurity Red Team Internship 2026. │
│ │
│ ✅ DO: Use against the isolated Docker lab only │
│ ✅ DO: Study the vulnerability to understand heap exploits │
│ ✅ DO: Contribute findings to the team report │
│ │
│ ❌ DON'T: Run against any real system, VM, or cloud instance │
│ ❌ DON'T: Share outside the internship programme │
│ ❌ DON'T: Use for any unauthorised access │
└─────────────────────────────────────────────────────────────────┘
Departamento de Ciberseguridad ITSOLERA — Prácticas de Red Team, Verano 2026