CVE-2025-8110 Elastic Security · Elastic

Detect Gogs Path Traversal Vulnerability (CVE-2025-8110) in Elastic Security

Detects exploitation attempts targeting CVE-2025-8110, a path traversal vulnerability (CWE-22) in Gogs self-hosted Git service. Attackers can craft malicious HTTP requests containing directory traversal sequences to read arbitrary files outside the intended web root, potentially exposing sensitive configuration files, SSH keys, or repository data. This vulnerability is listed in the CISA KEV catalog indicating active exploitation in the wild.

MITRE ATT&CK

Tactic
Initial Access Credential Access Collection

Elastic Detection Query

Elastic Security (Elastic)
eql
sequence by source.ip with maxspan=5m
  [network where event.category == "network" and network.direction == "inbound"
   and (
     url.path : ("*../*", "*%2e%2e%2f*", "*%2e%2e/*", "*..%2f*", "*%252e%252e*")
     or url.original : ("*../*", "*%2e%2e%2f*", "*%2e%2e/*", "*..%2f*", "*%252e%252e*")
   )
   and (
     url.path : ("*app.ini*", "*/etc/passwd*", "*/etc/shadow*", "*id_rsa*", "*.ssh/*", "*conf/app.ini*")
     or url.original : ("*app.ini*", "*/etc/passwd*", "*id_rsa*", "*.ssh/*")
   )
  ] with runs=1
critical severity medium confidence

EQL sequence detection that identifies path traversal patterns in HTTP request URLs targeting Gogs-specific sensitive files including the Gogs app.ini configuration file, SSH keys, and system credential files.

Data Sources

Elastic SIEM network eventsFilebeat web server modulesPacketbeat HTTP monitoring

Required Tables

logs-*filebeat-*packetbeat-*

False Positives & Tuning

  • Legitimate automated backup or monitoring tools that traverse file paths via Gogs API
  • Security scanners performing DAST testing on Gogs installations
  • Misconfigured reverse proxies that pass raw path segments without normalization
  • Integration tests in CI/CD pipelines that use traversal-like paths in test fixtures

Other platforms for CVE-2025-8110


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 1Basic Gogs Path Traversal - Read app.ini

    Expected signal: HTTP GET requests to Gogs port (3000) with ../ and %2e%2e sequences in URI visible in access logs; 200 response with app.ini content if vulnerable, 400/403/404 if patched or WAF blocks

  2. Test 2Gogs Path Traversal - SSH Key Extraction

    Expected signal: HTTP requests with mixed encoding traversal patterns (%2f for /) targeting .ssh and id_rsa paths; response codes and body sizes indicate exploitation success or failure

  3. Test 3Automated Gogs Traversal Scan with Multiple Encoding Variants

    Expected signal: Burst of HTTP requests from single source IP within seconds, each containing different encoding variants of traversal sequences; some requests may return 200 with file content if instance is vulnerable

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections