Secure Development Lifecycle (SDLC) integruje bezpieczeństwo w każdej fazie tworzenia oprogramowania — od wymagań poprzez projektowanie, kodowanie, testowanie, wdrażanie i utrzymanie — zamiast traktować je jako uzupełnienie. Ucieleśnia "shift left" i "security by design".
Bezpieczeństwo na całym cyklu życia
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).
