CVE-2024-47697: drivers: media: dvb-frontends/rtl2830: fix an out-of-bounds write error
In the Linux kernel, the following vulnerability has been resolved:
drivers: media: dvb-frontends/rtl2830: fix an out-of-bounds write error
Ensure index in rtl2830_pid_filter does not exceed 31 to prevent
out-of-bounds access.
dev->filters is a 32-bit value, so set_bit and clear_bit functions should
only operate on indices from 0 to 31. If index is 32, it will attempt to
access a non-existent 33rd bit, leading to out-of-bounds access.
Change the boundary check from index > 32 to index >= 32 to resolve this
issue.
Security readout for executives and security teams
Plain-English summary
A Linux media driver accepts an invalid filter index and writes beyond its intended 32-bit storage. A local, low-privileged user could potentially compromise confidentiality, integrity, or availability on an affected system. Practical exposure depends on whether the RTL2830 DVB frontend driver and vulnerable functionality are present and reachable.
Executive priority
Treat as a high-priority, configuration-dependent local privilege risk. Patch exposed systems through normal emergency or accelerated kernel maintenance, especially shared or untrusted-user hosts. Internet-facing status alone does not determine exposure because the documented attack vector is local.
Technical view
rtl2830_pid_filter incorrectly allowed index 32 because its boundary check used “greater than 32.” The filters field contains only 32 bits, indexed 0–31, so bit operations at index 32 cause an out-of-bounds write. The kernel fix rejects indices greater than or equal to 32.
Likely exposure
Exposure is most likely on affected Linux systems using or loading the RTL2830 DVB frontend driver. The supplied CVSS vector requires local access and low privileges, with no user interaction. The bundle does not establish which distribution builds, configurations, or deployed devices expose the vulnerable path.
Exploitation context
The CVSS score is 7.8 and indicates potentially high confidentiality, integrity, and availability impact. The supplied record does not list this CVE in KEV and provides no evidence of active exploitation or a public exploit. Real-world exploitability is not established by the bundle.
Researcher notes
This is a one-boundary off-by-one error in a bit operation over a 32-bit field. The correction changes the condition from index greater than 32 to index greater than or equal to 32. The bundle does not provide exploitability analysis, confirmed attack chains, or complete distribution-specific version mapping.
Mitigation direction
Install a vendor-supported kernel update that incorporates the referenced stable fix.
Check Linux distribution and device-vendor advisories for exact affected and fixed package versions.
Prioritize systems where the RTL2830 DVB frontend driver is loaded or required.
Follow vendor guidance if immediate kernel replacement is operationally impractical.
Validation and detection
Record the running kernel and installed kernel package versions.
Determine whether the rtl2830 driver is built, available, or currently loaded.
Compare the kernel source or vendor package against the referenced stable correction.
Confirm patched systems reject filter indices of 32 or greater using safe regression testing.
Reboot where required and verify the corrected kernel is running.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cve · low confidence lookup
CVE-2024-47697 mapping review
Open the CVE-to-ATT&CK bridge for reviewed, inferred, or future official mappings tied to this CVE.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.