Nixpkgs security tracker

Login with GitHub
⚠️ You are using a production deployment that is still only suitable for demo purposes. Any work done in this might be wiped later without notice.

Dismissed suggestions

These automatic suggestions were dismissed after initial triaging.

to select a suggestion for revision.

View:
Compact
Detailed
Dismissed
(max. allowed matches exceeded)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
net/rds: zero per-item info buffer before handing it to visitors

In the Linux kernel, the following vulnerability has been resolved: net/rds: zero per-item info buffer before handing it to visitors rds_for_each_conn_info() and rds_walk_conn_path_info() both hand a caller-allocated on-stack u64 buffer to a per-connection visitor and then copy the full item_len bytes back to user space via rds_info_copy() regardless of how much of the buffer the visitor actually wrote. rds_ib_conn_info_visitor() and rds6_ib_conn_info_visitor() only write a subset of their output struct when the underlying rds_connection is not in state RDS_CONN_UP (src/dst addr, tos, sl and the two GIDs via explicit memsets). Several u32 fields (max_send_wr, max_recv_wr, max_send_sge, rdma_mr_max, rdma_mr_size, cache_allocs) and the 2-byte alignment hole between sl and cache_allocs remain as whatever stack contents preceded the visitor call and are then memcpy_to_user()'d out to user space. struct rds_info_rdma_connection and struct rds6_info_rdma_connection are the only rds_info_* structs in include/uapi/linux/rds.h that are not marked __attribute__((packed)), so they have a real alignment hole. The other info visitors (rds_conn_info_visitor, rds6_conn_info_visitor, rds_tcp_tc_info, ...) write all fields of their packed output struct today and are not known to be vulnerable, but a future visitor that adds a conditional write-path would have the same bug. Reproduction on a kernel built without CONFIG_INIT_STACK_ALL_ZERO=y: a local unprivileged user opens AF_RDS, sets SO_RDS_TRANSPORT=IB, binds to a local address on an RDMA-capable netdev (rxe soft-RoCE on any netdev is sufficient), sendto()'s any peer on the same subnet (fails cleanly but installs an rds_connection in the global hash in RDS_CONN_CONNECTING), then calls getsockopt(SOL_RDS, RDS_INFO_IB_CONNECTIONS). The returned 68-byte item contains 26 bytes of stack garbage including kernel text/data pointers: 0..7 0a 63 00 01 0a 63 00 02 src=10.99.0.1 dst=10.99.0.2 8..39 00 ... gids (memset-zeroed) 40..47 e0 92 a3 81 ff ff ff ff kernel pointer (max_send_wr) 48..55 7f 37 b5 81 ff ff ff ff kernel pointer (rdma_mr_max) 56..59 01 00 08 00 rdma_mr_size (garbage) 60..61 00 00 tos, sl 62..63 00 00 alignment padding 64..67 18 00 00 00 cache_allocs (garbage) Fix by zeroing the per-item buffer in both rds_for_each_conn_info() and rds_walk_conn_path_info() before invoking the visitor. This covers the IPv4/IPv6 IB visitors and hardens all current and future visitors against the same class of bug. No functional change for visitors that fully populate their output. Changes in v2: - retarget at the net tree (subject prefix "[PATCH net v2]", net/rds: prefix in the title) - pick up Reviewed-by tags from Sharath Srinivasan and Allison Henderson

Affected products

Linux
  • =<5.15.*
  • =<6.18.*
  • <81651e9d7dea1c048d2952f57632a042931d7b43
  • <c7cb9eed8215a790f052f49cdccf577720d2bb62
  • =<6.12.*
  • ==2.6.30
  • <912ba2e5704fdb8bc5decda96dfc1a57838f0099
  • <5e67cc262afb384e835c3327e9d954eeaedc6a87
  • <0797b2e6901827694aa9c34c4c72118c8c97fba1
  • <b6ba93a7b71ed443c9843eb12d27ed86f1e52694
  • <91ce1bb6e4194dc2321748f68145359dcf86e350
  • <2.6.30
  • =<7.0.*
  • =<*
  • =<6.1.*
  • =<5.10.*
  • <c88eb7e8d8397a8c1db59c425332c5a30b2a1682
  • =<6.6.*
Dismissed
(max. allowed matches exceeded)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
erofs: unify lcn as u64 for 32-bit platforms

In the Linux kernel, the following vulnerability has been resolved: erofs: unify lcn as u64 for 32-bit platforms As sashiko reported [1], `lcn` was typed as `unsigned long` (or `unsigned int` sometimes), which is only 32 bits wide on 32-bit platforms, which causes `(lcn << lclusterbits)` to be truncated at 4 GiB. In order to consolidate the logic, just use `u64` consistently around the codebase. [1] https://sashiko.dev/r/20260420034612.1899973-1-hsiangkao%40linux.alibaba.com

Affected products

Linux
  • <2d8c7edcb661812249469f4a5b62e9339118846f
  • <858e4d98a86adf34584767388deb6c9b217f70c5
  • =<6.18.*
  • =<6.12.*
  • =<7.0.*
  • <5.3
  • <582b0bf201157632cb5474c885989a6ebda46521
  • =<*
  • <4fc9b12e43a3f19a01a8fb61f7961be79de20253
  • ==5.3
Dismissed
(max. allowed matches exceeded)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
netfilter: nft_ct: fix missing expect put in obj eval

In the Linux kernel, the following vulnerability has been resolved: netfilter: nft_ct: fix missing expect put in obj eval nft_ct_expect_obj_eval() allocates an expectation and may call nf_ct_expect_related(), but never drops its local reference. Add nf_ct_expect_put(exp) before return to balance allocation.

Affected products

Linux
  • =<6.1.*
  • =<5.15.*
  • =<6.18.*
  • <1dced0725e2fae3ac3416274db20a7ff5a46931d
  • =<6.12.*
  • <26ab32ec73941871c97562ee1f39587950dc3b68
  • <19f94b6fee75b3ef7fbc06f3745b9a771a8a19a4
  • =<7.0.*
  • <ecca618e1e339494911090474ed87742c0f73976
  • <5.3
  • <2aef1b13d5c0285f340512c6c07eb858fd018fd8
  • =<*
  • <7b96242ceedfe249f158419f3254bcee04173ffe
  • =<6.6.*
  • <84c422cea5a45fe56be839f25880f21fd33940cd
  • ==5.3
  • =<5.10.*
  • <cdb9a25dd3416d427e8b2753210f8baf44207577
Dismissed
(max. allowed matches exceeded)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
bus: fsl-mc: use generic driver_override infrastructure

In the Linux kernel, the following vulnerability has been resolved: bus: fsl-mc: use generic driver_override infrastructure When a driver is probed through __driver_attach(), the bus' match() callback is called without the device lock held, thus accessing the driver_override field without a lock, which can cause a UAF. Fix this by using the driver-core driver_override infrastructure taking care of proper locking internally. Note that calling match() from __driver_attach() without the device lock held is intentional. [1]

Affected products

Linux
  • <6c8dfb0362732bf1e4829867a2a5239fedc592d0
  • =<6.18.*
  • ==5.10
  • =<7.0.*
  • <4911b836f35c034c36f102db4ecbe339b38e7d1d
  • =<*
  • <5.10
  • =<6.12.*
  • <8139ce66b52a4a5638bfb445b037c07d4abeb08e
  • <60bfb563a399c4597dc80588a1109758a8908b97
Dismissed
(max. allowed matches exceeded)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
net: bcmgenet: fix off-by-one in bcmgenet_put_txcb

In the Linux kernel, the following vulnerability has been resolved: net: bcmgenet: fix off-by-one in bcmgenet_put_txcb The write_ptr points to the next open tx_cb. We want to return the tx_cb that gets rewinded, so we must rewind the pointer first then return the tx_cb that it points to. That way the txcb can be correctly cleaned up.

Affected products

Linux
  • <14e9f86564fff7bcf7f45c1b69080e837b31d185
  • <2a74590170427a3ca7cc4bb8690cdd559129c29c
  • =<6.18.*
  • =<7.0.*
  • <57f3f53d2c9c5a9e133596e2f7bc1c50688a6d38
  • <85f34ec320d3881badfd4edc5fee5cd5012bb54d
  • =<6.1.*
  • <29394f722f620281f2ee9a47f947734e53d72c90
  • ==3bdf77194ea822390b405639b77659071fd2c2e9
  • <fb9a3c1f547d0ff024dbfe7b6f327626ddf0a3de
  • <4cab761fc51c65aef741fcece4a18f3554edbc09
  • <4.13
  • =<5.15.*
  • <3.17
  • <72df896e31ddd06fcc5a789f025ad7a62a18bc9b
  • =<*
  • ==4.13
  • =<6.12.*
  • =<5.10.*
  • =<6.6.*
Dismissed
(max. allowed matches exceeded)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
libceph: Fix potential out-of-bounds access in osdmap_decode()

In the Linux kernel, the following vulnerability has been resolved: libceph: Fix potential out-of-bounds access in osdmap_decode() When decoding osd_state and osd_weight from an incoming osdmap in osdmap_decode(), both are decoded for each osd, i.e., map->max_osd times. The ceph_decode_need() check only accounts for sizeof(*map->osd_weight) once. This can potentially result in an out-of-bounds memory access if the incoming message is corrupted such that the max_osd value exceeds the actual content of the osdmap message. This patch fixes the issue by changing the corresponding part in the ceph_decode_need() check to account for map->max_osd*sizeof(*map->osd_weight).

Affected products

Linux
  • =<6.1.*
  • =<5.15.*
  • =<6.18.*
  • <ee933694645dac062d65fc2743f92bc06fa0db6b
  • <48df98d12b15360cd56af5c1f460307b340c1197
  • =<6.12.*
  • =<7.0.*
  • <35d0ed82d03e5ee77ea4f31f20e29562a7721649
  • <5.3
  • <8713bbc4b2b9ad78f803978e54b7e49dd21bd9be
  • =<*
  • <36a79759a288961b1ff28a68ec2d1f56f6848098
  • <3f2575bb7f955d42569d96c3e04fa958a0dcf4b4
  • <0d2dd7e6bb74fd7712aa73457a4a821906c6863a
  • ==5.3
  • =<5.10.*
  • <e7187f33c02488697ec0d01d82bf7a3f8deaba8f
  • =<6.6.*
Dismissed
(max. allowed matches exceeded)
Permalink CVE-2026-13023
5.3 MEDIUM
  • CVSS version (CVSS): 3.1
  • Attack Vector (AV): Network (N)
  • Attack Complexity (AC): High (H)
  • Privileges Required (PR): None (N)
  • User Interaction (UI): Required (R)
  • Scope (S): Unchanged (U)
  • Confidentiality (C): High (H)
  • Integrity (I): None (N)
  • Availability (A): None (N)
  • Modified Attack Vector (MAV): Network (N)
  • Modified Attack Complexity (MAC): High (H)
  • Modified Privileges Required (MPR): None (N)
  • Modified User Interaction (MUI): Required (R)
  • Modified Confidentiality (MC): High (H)
  • Modified Scope (MS): Unchanged (U)
  • Modified Integrity (MI): None (N)
  • Modified Availability (MA): None (N)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
Uninitialized Use in GPU in Google Chrome prior to 149.0.7827.197 …

Uninitialized Use in GPU in Google Chrome prior to 149.0.7827.197 allowed a remote attacker who had compromised the renderer process to obtain potentially sensitive information from process memory via a crafted HTML page. (Chromium security severity: High)

Affected products

Chrome
  • <149.0.7827.197
Dismissed
(max. allowed matches exceeded)
Permalink CVE-2026-13024
4.2 MEDIUM
  • CVSS version (CVSS): 3.1
  • Attack Vector (AV): Network (N)
  • Attack Complexity (AC): High (H)
  • Privileges Required (PR): None (N)
  • User Interaction (UI): Required (R)
  • Scope (S): Unchanged (U)
  • Confidentiality (C): Low (L)
  • Integrity (I): None (N)
  • Availability (A): Low (L)
  • Modified Attack Vector (MAV): Network (N)
  • Modified Attack Complexity (MAC): High (H)
  • Modified Privileges Required (MPR): None (N)
  • Modified User Interaction (MUI): Required (R)
  • Modified Confidentiality (MC): Low (L)
  • Modified Scope (MS): Unchanged (U)
  • Modified Integrity (MI): None (N)
  • Modified Availability (MA): Low (L)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
Insufficient validation of untrusted input in Navigation in Google Chrome …

Insufficient validation of untrusted input in Navigation in Google Chrome prior to 149.0.7827.197 allowed a remote attacker who had compromised the renderer process to bypass site isolation via a crafted HTML page. (Chromium security severity: High)

Affected products

Chrome
  • <149.0.7827.197
Dismissed
(max. allowed matches exceeded)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
drm/bridge: cadence: cdns-mhdp8546-core: Set the mhdp connector earlier in atomic_enable()

In the Linux kernel, the following vulnerability has been resolved: drm/bridge: cadence: cdns-mhdp8546-core: Set the mhdp connector earlier in atomic_enable() In case if we get errors in cdns_mhdp_link_up() or cdns_mhdp_reg_read() in atomic_enable, we will go to cdns_mhdp_modeset_retry_fn() and will hit NULL pointer while trying to access the mutex. We need the connector to be set before that. Unlike in legacy cases with flag !DRM_BRIDGE_ATTACH_NO_CONNECTOR, we do not have connector initialised in bridge_attach(), so add the mhdp->connector_ptr in device structure to handle both cases with DRM_BRIDGE_ATTACH_NO_CONNECTOR and !DRM_BRIDGE_ATTACH_NO_CONNECTOR, set it in atomic_enable() earlier to avoid possible NULL pointer dereference in recovery paths like modeset_retry_fn() with the DRM_BRIDGE_ATTACH_NO_CONNECTOR flag set.

Affected products

Linux
  • <6.6
  • =<6.18.*
  • <a3611554e599d1a24b45fd8415bacb72ce861e4b
  • <cf2ac2cac8b319f89b3a3851ca0c5ffb6a549575
  • =<7.0.*
  • <1af3b42e08a957e53bab8e1897393fe0a27d9fbf
  • ==6.6
  • <5302015daf26ef6b48e067f2b86c9482ac19e015
  • =<*
  • <43d6508ddbf9fb974fbc359a033154f78c9d4c8b
  • =<6.12.*
  • =<6.6.*
Dismissed
(max. allowed matches exceeded)
created 3 weeks, 5 days ago Activity log
  • Created & dismissed (max. allowed matches exceeded) suggestion
pppoe: drop PFC frames

In the Linux kernel, the following vulnerability has been resolved: pppoe: drop PFC frames RFC 2516 Section 7 states that Protocol Field Compression (PFC) is NOT RECOMMENDED for PPPoE. In practice, pppd does not support negotiating PFC for PPPoE sessions, and the current PPPoE driver assumes an uncompressed (2-byte) protocol field. However, the generic PPP layer function ppp_input() is not aware of the negotiation result, and still accepts PFC frames. If a peer with a broken implementation or an attacker sends a frame with a compressed (1-byte) protocol field, the subsequent PPP payload is shifted by one byte. This causes the network header to be 4-byte misaligned, which may trigger unaligned access exceptions on some architectures. To reduce the attack surface, drop PPPoE PFC frames. Introduce ppp_skb_is_compressed_proto() helper function to be used in both ppp_generic.c and pppoe.c to avoid open-coding.

Affected products

Linux
  • <cb3beef35ab5e0c1afca9fd7648c6ae499786377
  • =<5.15.*
  • =<6.18.*
  • <8a5e840babc5c0fbd10c73728a13192347771ec6
  • =<6.12.*
  • <ba758fdf1399f310b30098b6faa3fd043de47dd2
  • <5.0
  • =<7.0.*
  • <0cab5d077dd1efd2bd1a47271acc35894f945b4f
  • <cc1ff87bce1ccd38410ab10960f576dcd17db679
  • <2b5c3c040d020e3ab3b9a8887031202d96843b1e
  • <fcca1df05322bb04e344dd1178b54b76a08eb7c3
  • <49e41b60ccd1bdbe9e218420f716dd5f9a2f9c71
  • =<*
  • ==5.0
  • =<6.1.*
  • =<5.10.*
  • =<6.6.*