Threats Tagged 'cve-2025-40350'
View all threats tagged with 'cve-2025-40350'. Filter and sort to focus on specific types of threats.
Stop chasing alerts. Route them.
Start free, then upgrade once to turn Radar into an automated delivery engine for your security stack.
Custom feeds / Automations: email, Slack, webhooks, SIEM/MISP / API access (baseline limits)
API access activates after upgrading in Console -> Billing.
Check if your credentials are on the dark web
Instant breach scanning across billions of leaked records. Free tier available.
Filter Threats
Narrow down the results by type, severity, or affected countries
Threats Tagged 'cve-2025-40350'
Click on any threat for detailed analysis and mitigation recommendations
A critical vulnerability in the Linux kernel's mlx5 network driver was resolved, addressing improper handling of non-linear xdp_buff layouts after XDP programs modify buffer data. The mlx5 driver incorrectly assumed the layout of xdp_buff remained unchanged, causing erroneous socket buffer (skb) generation and potential kernel warnings or crashes. The fix ensures skb generation correctly reflects the adjusted xdp_buff layout after XDP program execution. Join the discussion | GCVE Database | 12/16/2025, 15:30:43 UTC Added: 07/30/2026, 15:50:44 UTC |
In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: RX, Fix generating skb from non-linear xdp_buff for striding RQ XDP programs can change the layout of an xdp_buff through bpf_xdp_adjust_tail() and bpf_xdp_adjust_head(). Therefore, the driver cannot assume the size of the linear data area nor fragments. Fix the bug in mlx5 by generating skb according to xdp_buff after XDP programs run. Currently, when handling multi-buf XDP, the mlx5 driver assumes the layout of an xdp_buff to be unchanged. That is, the linear data area continues to be empty and fragments remain the same. This may cause the driver to generate erroneous skb or triggering a kernel warning. When an XDP program added linear data through bpf_xdp_adjust_head(), the linear data will be ignored as mlx5e_build_linear_skb() builds an skb without linear data and then pull data from fragments to fill the linear data area. When an XDP program has shrunk the non-linear data through bpf_xdp_adjust_tail(), the delta passed to __pskb_pull_tail() may exceed the actual nonlinear data size and trigger the BUG_ON in it. To fix the issue, first record the original number of fragments. If the number of fragments changes after the XDP program runs, rewind the end fragment pointer by the difference and recalculate the truesize. Then, build the skb with the linear data area matching the xdp_buff. Finally, only pull data in if there is non-linear data and fill the linear part up to 256 bytes. Join the discussion | GCVE Database | 12/16/2025, 14:15:00 UTC Added: 07/18/2026, 11:34:33 UTC |
Showing 1 to 2 of 2 results