Description
An issue was discovered in Bosch Sensortec COINES_SDK versions 2.0 through 2.11. 

The host streaming API function {{coines_read_stream_sensor_data()}} fails to validate the boundaries of the caller-provided destination buffer.

Internally, the stream processing mechanism in {{comm_intf_process_stream_response()}} discards the requested {{number_of_samples}} argument and copies the entirety of the streaming ring buffer's accumulated data into {{coines_stream_rsp_buf}}.

Subsequently, {{coines_read_stream_sensor_data()}} unconditionally executes a {{memcpy}} of the ring buffer size into the caller-provided buffer without verifying if the destination memory allocation is large enough.

A malicious or compromised hardware board connected via USB or BLE can exploit this by streaming a high volume of sensor samples, causing a heap or stack-based buffer overflow on the host desktop environment.

This can result in a Denial of Service (DoS) or potential arbitrary code execution on the host machine.
Published: 2026-09-10
Score: 6.8 Medium
EPSS: < 1% Very Low
KEV: No
Impact: Buffer overflow enabling possible denial of service or arbitrary code execution on the host system
Action: Apply Patch
AI Analysis

Impact

The COINES_SDK streaming API function fails to validate the size of the destination buffer before performing a memcpy. Because the internal buffer size is copied regardless of the caller’s requested sample count, an attacker can supply a low‑capacity buffer and invoke the API with a large request. This results in a heap or stack based buffer overflow, which can terminate the host application or, if control can be gained, lead to arbitrary code execution. The weakness is a classic unchecked input scenario.

Affected Systems

Bosch Sensortec devices using the COINES_SDK product, specifically versions 2.0 through 2.11. These versions expose the vulnerable read_stream_sensor_data() API and the underlying buffer handling routine.

Risk and Exploitability

The vulnerability has a CVSS score of 6.8. No EPSS data is available and the issue is not currently listed in CISA’s KEV catalog, suggesting it has not yet been widely exploited. The likely exploit requires a malicious or compromised sensor board that can connect to the host via USB or BLE and generate an unusually high volume of sensor samples. While this limits the attack surface to scenarios where an attacker has control over or physical access to the hardware, the potential impact of a successful overflow—Denial of Service or code execution on the host—remains significant.

Generated by OpenCVE AI on September 10, 2026 at 10:21 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the COINES SDK to version 2.12 or later, which includes bounds checking for the destination buffer.
  • Disable or strictly control USB/BLE connections to the device, ensuring only trusted hardware can communicate with the host.
  • Implement application‑level validation of the number_of_samples parameter and the size of the caller’s buffer to guard against overrun before calling memcpy.

Generated by OpenCVE AI on September 10, 2026 at 10:21 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Thu, 10 Sep 2026 14:30:00 +0000

Type Values Removed Values Added
Metrics ssvc

{'options': {'Automatable': 'no', 'Exploitation': 'none', 'Technical Impact': 'total'}, 'version': '2.0.3'}


Thu, 10 Sep 2026 10:45:00 +0000

Type Values Removed Values Added
Title Buffer Overflow in Bosch COINES SDK Streaming API

Thu, 10 Sep 2026 09:15:00 +0000

Type Values Removed Values Added
Description An issue was discovered in Bosch Sensortec COINES_SDK versions 2.0 through 2.11.  The host streaming API function {{coines_read_stream_sensor_data()}} fails to validate the boundaries of the caller-provided destination buffer. Internally, the stream processing mechanism in {{comm_intf_process_stream_response()}} discards the requested {{number_of_samples}} argument and copies the entirety of the streaming ring buffer's accumulated data into {{coines_stream_rsp_buf}}. Subsequently, {{coines_read_stream_sensor_data()}} unconditionally executes a {{memcpy}} of the ring buffer size into the caller-provided buffer without verifying if the destination memory allocation is large enough. A malicious or compromised hardware board connected via USB or BLE can exploit this by streaming a high volume of sensor samples, causing a heap or stack-based buffer overflow on the host desktop environment. This can result in a Denial of Service (DoS) or potential arbitrary code execution on the host machine.
Weaknesses CWE-120
References
Metrics cvssV3_1

{'score': 6.8, 'vector': 'CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H'}


Subscriptions

No data.

cve-icon MITRE

Status: PUBLISHED

Assigner: bosch

Published:

Updated: 2026-09-10T13:17:41.450Z

Reserved: 2026-04-30T08:03:11.875Z

Link: CVE-2026-42808

cve-icon Vulnrichment

Updated: 2026-09-10T13:17:38.096Z

cve-icon NVD

Status : Awaiting Analysis

Published: 2026-09-10T09:17:02.367

Modified: 2026-09-10T15:43:03.760

Link: CVE-2026-42808

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-10T10:30:04Z

Weaknesses
  • CWE-120

    Buffer Copy without Checking Size of Input ('Classic Buffer Overflow')