ExamRange

CSA (312-39) SOC Simulation Lab

Master compliance monitoring and data loss prevention (DLP). In this module, you will analyze a critical telemetry alert involving unauthorized logging of sensitive data and identify the regulatory framework that governs it.

Scenario Context

Organization: GlobalRetail E-Commerce
Phase: Detection & Analysis
Alert: DLP_Plaintext_PAN_Detected (Splunk)

GlobalRetail's engineering team recently deployed a hotfix to the primary payment gateway. Shortly after, a high-severity DLP alert fired in the SIEM.

A junior L1 analyst investigates and says, "It's just a debug log on an internal application server showing a failed checkout transaction. Since the server is internal, we can just close the ticket as a false positive, right?"

As the Senior Analyst, you review the log and immediately escalate to an incident. Storing this specific type of "account data" in plaintext violates a massive industry standard, risking severe fines and the loss of payment processing privileges.

Telemetry: Splunk Application Logs

Splunk SPL & Log Output Source: index=prod_gateway_logs
index=prod_gateway_logs sourcetype=ecommerce:debug
| regex raw_message="(?:\d[ -]*?){13,16}" 
| eval is_luhn_valid=if(luhn_check(raw_message)==1, "True", "False")
| search is_luhn_valid="True"

# RAW EVENT:
{
  "timestamp": "2023-10-12T14:32:11Z",
  "level": "DEBUG",
  "module": "payment_processor",
  "error_code": "ERR_CVV_MISMATCH",
  "transaction_payload": {
    "user_id": "usr_99182",
    "cc_number": "4111 1111 1111 1111",
    "exp_date": "12/25",
    "cvv": "123"
  }
}

CRITICAL: The SIEM has detected a Primary Account Number (PAN) and Sensitive Authentication Data (CVV) written in plaintext to a local disk, a severe compliance violation.

Question

Which of the following is a set of standard guidelines for ongoing development, enhancement, storage, dissemination and implementation of security standards for account data protection?