Understanding Threat Actors and Their Motivations
📖 Scenario: You are part of a cybersecurity awareness team at a company. Your task is to create a simple reference guide that lists common types of threat actors and their motivations. This guide will help your colleagues understand who might attack computer systems and why.
🎯 Goal: Build a clear list of threat actors with their motivations using a dictionary data structure. This will serve as a quick reference for your team.
📋 What You'll Learn
Create a dictionary named
threat_actors with exact entries for actor types and their motivationsAdd a variable named
focus_motivation to specify a motivation to filter byUse a dictionary comprehension to create a new dictionary
filtered_actors containing only actors with the specified motivationAdd a final statement that assigns the count of filtered actors to a variable named
count_filtered💡 Why This Matters
🌍 Real World
Understanding different types of threat actors and their motivations helps cybersecurity teams prepare defenses and educate employees about potential risks.
💼 Career
Cybersecurity analysts and awareness trainers use this knowledge to identify threats and explain them clearly to non-technical staff.
Progress0 / 4 steps