0
0
Cybersecurityknowledge~30 mins

Communication during incidents in Cybersecurity - Mini Project: Build & Apply

Choose your learning style9 modes available
Effective Communication During Cybersecurity Incidents
📖 Scenario: You are part of a cybersecurity team responding to a data breach incident at a company. Clear and accurate communication is essential to manage the situation effectively and minimize damage.
🎯 Goal: Build a step-by-step communication plan that outlines key messages, stakeholders, and communication channels during a cybersecurity incident.
📋 What You'll Learn
Create a dictionary called stakeholders with exact roles and their contact methods
Define a variable called incident_severity with the exact value 'High'
Use a loop with variables role and contact to prepare messages for each stakeholder
Add a final dictionary called communication_plan that maps each role to their message and contact method
💡 Why This Matters
🌍 Real World
During cybersecurity incidents, clear communication with the right people using the right channels is critical to respond quickly and effectively.
💼 Career
Cybersecurity professionals must coordinate with IT, management, legal, and PR teams to manage incidents and protect the organization.
Progress0 / 4 steps
1
Set up stakeholders and their contact methods
Create a dictionary called stakeholders with these exact entries: 'IT Team': 'email', 'Management': 'phone', 'Legal': 'email', 'Public Relations': 'phone'.
Cybersecurity
Need a hint?

Use curly braces to create a dictionary with the exact keys and values given.

2
Define the incident severity level
Create a variable called incident_severity and set it to the string 'High'.
Cybersecurity
Need a hint?

Assign the string 'High' to the variable named incident_severity.

3
Prepare messages for each stakeholder
Use a for loop with variables role and contact to iterate over stakeholders.items(). Inside the loop, create a dictionary called messages where each role maps to the string f"Notify {role} via {contact} about {incident_severity} severity incident.".
Cybersecurity
Need a hint?

Use a for loop to fill the messages dictionary with formatted strings for each role.

4
Create the final communication plan
Create a dictionary called communication_plan that maps each role to another dictionary with keys 'contact_method' and 'message'. Use the existing stakeholders and messages dictionaries to fill the values.
Cybersecurity
Need a hint?

Use a for loop to build the communication_plan dictionary with nested dictionaries for each role.