CVE-2026-94640
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Summary
A flaw was found in rpcbind. This vulnerability allows a remote, unauthenticated attacker to cause a Denial of Service (DoS) by sending a large number of unique requests. The rpcbind service records previously unseen RPC (Remote Procedure Call) statistics in unbounded in-memory lists, leading to persistent memory growth and increased CPU usage. This can degrade or exhaust service availability.
Affected Software
| Vendor | Product | Version Range | Status |
|---|
Weaknesses
- CWE-400: Uncontrolled Resource Consumption
Workarounds
Restrict network access to the rpcbind service on port 111 to trusted systems. This can be achieved by configuring firewall rules to limit inbound connections. For example, using firewalld on Red Hat Enterprise Linux:
# To allow access only from a specific trusted network (e.g., 192.168.1.0/24)
firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="192.168.1.0/24" port port="111" protocol="tcp" accept'
firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="192.168.1.0/24" port port="111" protocol="udp" accept'
firewall-cmd --reload
If rpcbind is only required for local services, ensure it is configured to listen only on the loopback interface or is otherwise protected from external network exposure. Applying these firewall rules will take effect immediately upon firewall-cmd --reload and may temporarily interrupt existing connections to rpcbind.
References
- https://access.redhat.com/security/cve/CVE-2026-94640
- https://bugzilla.redhat.com/show_bug.cgi?id=2462960
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.