Refer to the exhibit. Which stakeholders must be involved when a company workstation is compromised?
Correct Answer: C
When a company workstation is compromised, the stakeholders that must be involved are the ones who are responsible for the security incident response process. According to the table, these are Employee 4 (Security Operation Center Analyst), Employee 6 (Head of Network and Security Infrastructure Services), and Employee 7 (Technical Director). The other employees have different roles that are not directly related to the incident response process, such as accounting, financial management, or system administration. References := Understanding Cisco Cybersecurity Operations Fundamentals (CBROPS) v1.0, Module 1: Security Concepts, Lesson 1.4: Security Monitoring, Topic 1.4.1: Security Operations Center
200-201 Exam Question 92
If a web server accepts input from the user and passes it to a bash shell, to which attack method is it vulnerable?
Correct Answer: D
200-201 Exam Question 93
Refer to the exhibit. What is occurring?
Correct Answer: C
The exhibit indicates that email traffic is being transmitted in clear text, meaning the contents of the communication are readable without encryption. In network intrusion analysis, this is commonly observed when Simple Mail Transfer Protocol (SMTP) traffic is captured on standard ports such as 25 or 587 without Transport Layer Security (TLS) enabled. Encrypted mail protocols, such as SMTPS on port 465 or SMTP with STARTTLS, protect message contents from being inspected by unauthorized parties. When encryption is not in use, sensitive information such as email headers, message bodies, usernames, and potentially passwords can be exposed to attackers performing packet capture or man-in-the-middle attacks. Option A is incorrect because port 465 indicates encrypted SMTPS communication, which contradicts the observed plaintext traffic. Option B is incorrect because altered sequence and acknowledgment numbers would indicate session manipulation or injection, not lack of encryption. Option D refers to the function of an SMTP relay but does not describe the observed condition in the traffic. Cybersecurity operations fundamentals stress the importance of detecting unencrypted protocols during network analysis, as they represent high-risk exposure points. Identifying plaintext email communication is a key responsibility of SOC analysts and often leads to remediation actions such as enforcing TLS or disabling insecure services. Therefore, the correct conclusion is that mail communication is not encrypted, making Option C the correct answer.
200-201 Exam Question 94
What matches the regular expression c(rgr)+e?
Correct Answer: A
The regular expression c(rgr)+e matches strings where "rgr" occurs one or more times between "c" and "e". The string "crgrrgre" fits this pattern as it has the sequence "rgr" repeated twice between "c" and "e". The plus sign (+) in the regular expression indicates that the preceding element must appear one or more times for a match to occur
200-201 Exam Question 95
What is data tunneling?
Correct Answer: D
Data tunneling is a technique used to conceal malicious or unauthorized data by embedding it within legitimate protocols or system processes. Attackers commonly use tunneling to bypass security controls, evade detection, and exfiltrate data through allowed network channels such as HTTP, DNS, or HTTPS. Instead of transmitting malicious data directly, which may be blocked or flagged, the attacker encapsulates it within normal-looking traffic. For example, command-and-control communications may be hidden inside DNS queries, or stolen data may be exfiltrated within HTTP requests. To security tools, this traffic appears legitimate unless deep inspection or behavioral analysis is applied. Options A, B, and C describe standard networking or cryptographic operations, not tunneling. Decryption, packetization, and data reassembly are normal functions of communication systems and are not inherently malicious. Cybersecurity operations documentation highlights data tunneling as a common technique used in advanced persistent threats (APTs) and covert exfiltration scenarios. Detecting tunneling often requires correlation, anomaly detection, and protocol analysis rather than signature-based detection alone. Therefore, data tunneling refers to hiding malicious data within legitimate system processes, making Option D the correct answer.