Un Ciclo de Vida de Desarrollo Seguro (SDLC) integra la seguridad en cada fase del desarrollo de software — desde los requisitos hasta el diseño, la codificación, las pruebas, el despliegue y el mantenimiento — en lugar de tratarla como algo secundario. Encarna el enfoque "shift left" y "security by design".
Por qué es importante
Integrate security into EVERY phase (not just at the end):
REQUIREMENTS → define security requirements; consider compliance
DESIGN → THREAT MODELING; secure architecture; security review of the design
DEVELOPMENT → secure coding practices; code review; SAST in the IDE/CI
TESTING → security testing (SAST, DAST, dependency scanning, pen testing)
DEPLOYMENT → secure configuration; secrets management; hardening
MAINTENANCE → patching, monitoring, incident response, ongoing scanning
→ "shift left" — address security EARLY (cheaper than fixing after a breach).
