Lesson 35: Automated Security Alert

This script triggers an alert when suspicious activity is detected.

failed_attempts = 4

if failed_attempts > 3:
  print("⚠️ Security Alert: Too many failed logins")

Automation helps security teams respond faster.

🎉 Automation Security Basics Completed