🔥 3-day streak
Cisco CCNP Cybersecurity CBRCOR (350-201)115 / 147
Question 115 of 147
A SOC engineer is handed the following Python snippet that is supposed to read a threat feed CSV file and print only the IP addresses whose 'severity' column equals 'critical', so they can be pushed to a firewall block list: ```python import csv with open('feed.csv') as f: reader = csv.DictReader(f) for row in reader: print(row['ip']) ``` The script currently prints every IP in the file regardless of severity. Which single modification will make the script print only the critical IPs?
Reviewed for accuracy · Report an issueNext question