CVE-2020-7796 IBM QRadar · QRadar

Detect Zimbra Collaboration Suite SSRF Exploitation (CVE-2020-7796) in IBM QRadar

Detects exploitation attempts targeting CVE-2020-7796, a Server-Side Request Forgery (SSRF) vulnerability in Synacor Zimbra Collaboration Suite (ZCS). This vulnerability allows unauthenticated remote attackers to make the Zimbra server issue arbitrary HTTP requests to internal or external resources, potentially enabling internal network scanning, credential theft, or pivoting to internal services.

MITRE ATT&CK

Tactic
Reconnaissance Discovery Lateral Movement

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT
  DATEFORMAT(devicetime, 'yyyy-MM-dd HH:mm:ss') AS event_time,
  sourceip,
  destinationip,
  destinationport,
  URL,
  username,
  magnitude,
  QIDNAME(qid) AS event_name,
  logsourcename(logsourceid) AS log_source
FROM events
WHERE
  devicetime > NOW() - 3600000
  AND (
    URL MATCHES '(?i).*/service/proxy.*'
    OR URL MATCHES '(?i).*/zimlet/.*'
    OR URL MATCHES '(?i).*/service/extension/.*'
  )
  AND (
    URL MATCHES '(?i)[?&](target|host|url|backend|redirect)=https?://'
  )
  AND (
    URL MATCHES '(?i)(169\.254\.|127\.0\.0\.1|localhost|10\.|192\.168\.|172\.(1[6-9]|2[0-9]|3[01])\.|\.internal|metadata\.google)'
  )
ORDER BY devicetime DESC
LIMIT 1000
high severity medium confidence

AQL query for QRadar to detect Zimbra SSRF exploitation attempts by identifying HTTP requests to vulnerable endpoints with internal network destinations embedded in query parameters.

Data Sources

Web Application Firewall EventsIIS/Apache Log SourcesQRadar Network Activity

Required Tables

events

False Positives & Tuning

  • Legitimate Zimbra administrative proxy operations to internal groupware services
  • Automated Zimbra monitoring scripts that use the proxy endpoint for health checks
  • Security testing tools performing authorized SSRF testing against Zimbra

Other platforms for CVE-2020-7796


Testing Methodology

Validate this detection against 4 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 1Zimbra SSRF via /service/proxy to Internal Metadata Service

    Expected signal: HTTP GET request to /service/proxy with target parameter set to 169.254.169.254 visible in Zimbra access logs; outbound network connection from Zimbra server to 169.254.169.254:80 visible in network flow data

  2. Test 2Zimbra SSRF Internal Port Scan via /service/proxy

    Expected signal: Multiple sequential requests to /service/proxy with varying port numbers in the target parameter; outbound connections from Zimbra host to internal IP across multiple ports within a short time window

  3. Test 3Zimbra SSRF to Internal Admin Interface via /zimlet/ Endpoint

    Expected signal: HTTP GET to /zimlet/ endpoint with backend parameter containing 127.0.0.1 and internal admin port 7071; loopback connection attempt from Zimbra process visible in netstat/ss output or network telemetry

  4. Test 4Zimbra SSRF Credential Harvest via AWS EC2 Metadata

    Expected signal: Two sequential requests to /service/proxy with IMDSv1 paths in target parameter; successful 200 response containing JSON with AccessKeyId, SecretAccessKey, and Token fields if running on AWS EC2 without IMDSv2 enforcement

Last updated: 2026-06-19 Research depth: standard
References (2)

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections