You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docker-compose up --build
## Archivos incluidos
- `vulnerable.c` - Ejemplo de desbordamiento de pila
- `exploit.py` - Payload demostrativo (ajustar direcciones)
- `app.py` - App Flask con inyección SQL vulnerable
- `docker-compose.yml` - Aislamiento total
## Nota IMPORTANTE
Nunca ejecutes estos ejemplos en sistemas que no sean tuyos.
La GPL-3.0 NO protege el mal uso intencional.
3. Comandos para probar
# Construir todo
docker-compose up --build
# Buffer overflow (dentro del contenedor)
./exploit.py $(python3 -c "print('A'*72 + '\xef\xbe\xad\xde')")# SQL injection
curl -X POST -d "user=admin' OR '1'='1" http://localhost:5000/
About
Educational tool demonstrating buffer overflow and SQL injection vulnerabilities in isolated Docker environments. For authorized security training and defensive coding workshops only. Includes vulnerable examples + secure versions + automated testing.