CVE-2022-48503 IBM QRadar · QRadar

Detect CVE-2022-48503 Apple Multiple Products Unspecified Vulnerability Exploitation in IBM QRadar

Detects potential exploitation of CVE-2022-48503, an unspecified vulnerability affecting Apple multiple products. This CVE is listed in CISA's Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild. Detection focuses on suspicious process activity, network connections, and crash telemetry from Apple ecosystem processes that may indicate exploitation attempts.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT
  DATEFORMAT(devicetime, 'yyyy-MM-dd HH:mm:ss') AS event_time,
  sourceip,
  username,
  QIDNAME(qid) AS event_name,
  "Process Name",
  "Parent Process Name",
  destinationip,
  destinationport
FROM events
WHERE LOGSOURCETYPENAME(devicetype) IN ('Apple macOS', 'CrowdStrike Falcon', 'Carbon Black')
  AND (
    LOWER("Process Name") LIKE '%safari%'
    OR LOWER("Process Name") LIKE '%webkit%'
    OR LOWER("Process Name") LIKE '%webkitwebprocess%'
  )
  AND (
    LOWER("Parent Process Name") IN ('bash', 'zsh', 'sh', 'python', 'python3', 'ruby', 'perl', 'curl', 'wget')
    OR destinationport IN (4444, 1337, 31337, 8888)
  )
  AND DATEFORMAT(devicetime, 'yyyy-MM-dd') >= DATEADD('day', -7, CURRENT_DATE)
ORDER BY devicetime DESC
LIMIT 1000
high severity medium confidence

QRadar AQL query identifying Apple WebKit/Safari processes with suspicious parent processes or connections to non-standard ports that may indicate CVE-2022-48503 exploitation activity.

Data Sources

Apple macOS Unified LogCrowdStrike FalconCarbon Black EDR

Required Tables

events

False Positives & Tuning

  • Legitimate Safari extensions or plugins spawned from shell wrappers
  • macOS software management tools interfacing with WebKit processes
  • Security testing or penetration testing activities in authorized environments
  • Custom enterprise MDM scripts that invoke Safari processes via shell

Other platforms for CVE-2022-48503


Testing Methodology

Validate this detection against 3 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Simulate Safari Child Shell Spawn (macOS)

    Expected signal: Process launch event showing bash or osascript spawned in temporal proximity to Safari process activity; macOS Unified Log entries capturing both process starts

  2. Test 2WebKit Process Crash Simulation (macOS)

    Expected signal: Crash report generated in ~/Library/Logs/DiagnosticReports/ for safaridriver; macOS Unified Log capturing SIGABRT receipt; endpoint EDR (CrowdStrike/Defender) process termination event with abnormal exit code

  3. Test 3Suspicious Outbound Connection from Safari Process (macOS)

    Expected signal: Network connection event logged by endpoint EDR showing outbound TCP to port 4444 from curl process with Safari user-agent; DNS or network flow records capturing the connection attempt

Unlock Pro Content

Get the full detection package for CVE-2022-48503 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections