CSA (312-39) SOC Simulation Lab

Enhance your threat detection reasoning. In this module, you will analyze network security architecture to understand how visibility and containment are achieved at the web perimeter.

Scenario Context

Jackson & Co. is a mid-sized law firm dealing with highly sensitive client data. Recently, the SOC observed a spike in encrypted web traffic (HTTPS) reaching uncategorized domains. The current Next-Generation Firewall (NGFW) is struggling with SSL decryption performance at scale, leading to blind spots where users might inadvertently download malware or fall victim to phishing via encrypted channels. The IT team is deploying a dedicated perimeter solution to break, inspect, and log this traffic.

Security Environment

Recent telemetry observed post-implementation (Splunk SIEM View):

[14:22:01] INFO syslog: src_ip="192.168.50.12" dest_ip="104.21.XX.XX" dest_port="443" action="intercept"
[14:22:01] INFO ssl_decrypt: cert_issuer="JacksonCo_Internal_CA" client_sni="login.microsoftonline.secure-verify-update.com"
[14:22:02] ALERT threat_engine: category="Phishing" severity="High" action="blocked" msg="Credential Harvesting Site Detected"
[14:22:02] INFO http_access: return_code="403 Forbidden" user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64)..."

Question

Jackson & Co., a mid-sized law firm, is concerned about potential web-based cyber threats targeting their employees. To enhance security, their IT team implements a solution that serves as an intermediary for all HTTP and HTTPS requests. This solution allows the SOC to inspect, filter and control web traffic, helping to detect and block malicious websites, phishing attempts, and other online threats before they reach users. Which containment method is the organization using to gain visibility and control over web traffic?

Expert Insight

1. What is happening?

The firm deployed a Secure Web Gateway (SWG) or forward proxy. Because modern malware and phishing attacks are delivered via HTTPS, the SOC was blind to the payload. By placing an intermediary device between the user and the internet, the SOC can terminate the connection, decrypt the traffic using an internal Certificate Authority (CA), inspect the payload, and then re-establish the connection to the destination.

2. Why is "Proxy Servers" correct?

The keyword in the scenario is intermediary. A proxy server acts on behalf of the client. It intercepts the HTTP/HTTPS request, performs its checks (like TLS inspection and category filtering), and then forwards the request. It is the architectural component that actually makes the visibility and control possible.

3. Why are the other options wrong?

  • A (Web Content Filtering): This is a feature or capability. A proxy server performs web content filtering, but the filtering itself is not the intermediary architecture.
  • B (Blacklisting) & D (Whitelisting): These are access control methodologies (lists of bad or good entities), not the network intermediary solution itself.

4. Real-world SOC Application

In a Tier 2/3 SOC environment, Proxy logs (often ingested into Splunk or Sentinel via Zscaler, BlueCoat, or Squid) are vital for hunting Command and Control (C2) beaconing. Analysts look for specific patterns: high-frequency low-volume requests to newly registered domains, uncommon User-Agent strings, or HTTP POST requests that lack a standard referrer.

MINI LESSON: TLS Interception (SSL/TLS Inspection)

How does a proxy read encrypted HTTPS without triggering browser warnings?

  1. The IT department pushes the Proxy's Root Certificate to all endpoint devices via Group Policy (GPO) or MDM.
  2. When a user visits https://bad-domain.com, the Proxy intercepts the request.
  3. The Proxy dynamically generates a spoofed certificate for bad-domain.com signed by its own Root CA.
  4. Because the endpoint trusts the Root CA, the browser accepts the connection without a warning.
  5. The Proxy decrypts the traffic, scans for malware/phishing signatures, logs the URL for the SOC, and re-encrypts it to the external server.

Ready to level up your SOC skills?

Explore more CSA simulations →