SecBoard
Zurück zur CVE-Übersicht

CVE-2026-20002

HIGH(8.1)

CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N

Risk Signal Score20/100 — NIEDRIG
  • CVSS 8.1 — Hoch

Erwähnungen (letzte 60 Tage)

Artikel

EPSS-Score

0.3%

Exploit-Wahrscheinlichkeit (30 Tage)

CVSS Score

8.1

Technische Schwere

Beschreibung

A vulnerability in the web-based management interface of Cisco Secure FMC Software could allow an authenticated, remote attacker to conduct SQL injection attacks on an affected system. This vulnerability is due to inadequate validation of user-supplied input. An attacker could exploit this vulnerability by sending crafted requests to an affected device. A successful exploit could allow the attacker to obtain full access to the database and read certain files on the underlying operating system. To exploit this vulnerability, the attacker would need valid user credentials.

Erkennung & Indikatoren

Ausnutzung

In den geprüften Quellen nicht genannt

Threat-Hunting-Queries

Diese Schwachstelle betrifft die webbasierte Verwaltungsoberfläche von Cisco Secure FMC Software und ermöglicht SQL-Injection-Angriffe durch authentifizierte, entfernte Angreifer. Die Detektion konzentriert sich auf ungewöhnliche oder verdächtige Anfragen an die FMC-Weboberfläche, die auf SQL-Injection-Versuche hindeuten könnten. Dazu gehören Anfragen mit SQL-spezifischen Keywords, Sonderzeichen o

Sentinel/Defender KQL

CiscoFMCLogs
| where EventType == "WebAccess" and Url contains "/api/" // Oder spezifischere Pfade der Management-Oberfläche
| where HttpRequestMethod in ("POST", "GET")
| where Url contains "'" or Url contains "--" or Url contains "union select" or Url contains "waitfor delay" or Url contains "benchmark("
| summarize count() by SourceIp, DestinationIp, Url, HttpRequestMethod, HttpStatusCode
| where count_ > 5 // Schwellenwert für wiederholte Versuche anpassen
| project SourceIp, DestinationIp, Url, HttpRequestMethod, HttpStatusCode, count_

Splunk SPL

sourcetype="cisco:fmc:weblogs" (uri_path="/api/*" OR uri_path="/admin/*") (method="POST" OR method="GET") (uri="*'" OR uri="*--*" OR uri="*union select*" OR uri="*waitfor delay*" OR uri="*benchmark(*")
| stats count by src_ip, dest_ip, uri, method, status
| where count > 5
| table src_ip, dest_ip, uri, method, status, count

Sigma

title: Cisco FMC SQL Injection Attempt
logsource:
  product: cisco
  service: fmc
detection:
  selection:
    event_type: "WebAccess"
    url|contains:
      - "/api/"
      - "/admin/"
    http_request_method:
      - "POST"
      - "GET"
    url|contains:
      - "'"
      - "--"
      - "union select"
      - "waitfor delay"
      - "benchmark("
  condition: selection
  timeframe: 5m
  level: high

Elastic ES|QL

FROM cisco_fmc_logs
| WHERE event.type == "WebAccess" AND (url.path LIKE "/api/%" OR url.path LIKE "/admin/%")
| WHERE http.request.method IN ("POST", "GET")
| WHERE url.full LIKE "%'%" OR url.full LIKE "%--%" OR url.full LIKE "%union select%" OR url.full LIKE "%waitfor delay%" OR url.full LIKE "%benchmark(%"
| GROUP BY source.ip, destination.ip, url.full, http.request.method, http.response.status_code
| AGG count = count()
| WHERE count > 5
| COLUMNS source.ip, destination.ip, url.full, http.request.method, http.response.status_code, count

SecBoard-generated · behavioral · requires customizationVon SecBoard erzeugt und nicht in einer Zielumgebung validiert. Vor dem Einsatz an die eigene Protokollierung anpassen.

Betroffene Produkte

  • cpe:2.3:a:cisco:secure_firewall_management_center:*:*:*:*:*:*:*:*
  • cpe:2.3:a:cisco:secure_firewall_management_center:*:*:*:*:*:*:*:*
  • cpe:2.3:a:cisco:secure_firewall_management_center:*:*:*:*:*:*:*:*
  • cpe:2.3:a:cisco:secure_firewall_management_center:*:*:*:*:*:*:*:*
  • cpe:2.3:a:cisco:secure_firewall_management_center:*:*:*:*:*:*:*:*
  • cpe:2.3:a:cisco:secure_firewall_management_center:*:*:*:*:*:*:*:*
  • cpe:2.3:a:cisco:secure_firewall_management_center:*:*:*:*:*:*:*:*
  • cpe:2.3:a:cisco:secure_firewall_management_center:*:*:*:*:*:*:*:*

Referenzen