ایک Secure Development Lifecycle (SDLC) سافٹ ویئر کی ترقی کے ہر مرحلے میں سیکیورٹی کو شامل کرتا ہے — requirements سے لے کر design، coding، testing، deployment، اور maintenance تک — بجائے اس کے کہ اسے بعد میں سوچا جائے۔ یہ "shift left" اور "security by design" کو ظاہر کرتا ہے۔
پوری lifecycle میں سیکیورٹی
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).
