<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>bosch-sensortec on SecMate Blog</title><link>https://blog.secmate.dev/tags/bosch-sensortec/</link><description>SecMate vulnerability research, technical advisories, security benchmarks, and evidence-backed analysis of exploitable software flaws.</description><generator>Hugo</generator><language>en-us</language><managingEditor>noreply@blog.secmate.dev (SecMate Team)</managingEditor><lastBuildDate>Thu, 10 Sep 2026 07:11:56 +0000</lastBuildDate><atom:link href="https://blog.secmate.dev/tags/bosch-sensortec/index.xml" rel="self" type="application/rss+xml"/><item><title>Five Bosch Sensortec SensorAPI and COINES SDK Vulnerabilities</title><link>https://blog.secmate.dev/posts/bosch-sensortec-sensorapi-coines-vulnerabilities/</link><pubDate>Fri, 04 Sep 2026 00:00:00 +0200</pubDate><dc:creator>Maxime Rossi Bellom</dc:creator><dc:creator>Ramtine Tofighi Shirazi</dc:creator><category>Security</category><category>Vulnerability Research</category><category>Embedded</category><guid>https://blog.secmate.dev/posts/bosch-sensortec-sensorapi-coines-vulnerabilities/</guid><description>CVE-2026-42804–42808 affect Bosch Sensortec BHI360, BHI385 and BME690 Sensor APIs and COINES SDK. Architecture, impact, versions and fixes.</description><content:encoded><![CDATA[<p>SecMate identified five memory-safety vulnerabilities in software used to evaluate and integrate Bosch Sensortec devices. Bosch published them as <a href="https://psirt.bosch.com/security-advisories/bosch-sa-223618.html" rel="noopener noreferrer" target="_blank">BOSCH-SA-223618</a> on August 31, 2026, assigning CVE-2026-42804 through CVE-2026-42808 <a href="#ref1">[1]</a>.</p>
<p>Three findings affect C drivers that a host processor uses to configure a BHI360, BHI385 or BME690 sensor and parse data received over I2C or SPI. Two affect COINES SDK, the development environment that connects a PC to Bosch evaluation boards over USB or Bluetooth Low Energy (BLE).</p>
<p>In each case, software trusts a length or index received across that hardware boundary. A malicious or compromised sensor, bus participant or evaluation board can use the missing validation to crash the host, disclose adjacent memory or, in the highest-impact cases described by Bosch, potentially execute code. Bosch&rsquo;s highest CVSS v3.1 score in the set is 8.4 High <a href="#ref1">[1]</a>.</p>
<p>The affected code runs on the host that integrates the library: an embedded MCU or SoC for the SensorAPIs, and normally a developer workstation for the COINES PC paths.</p>
<h2 id="what-are-these-projects">What Are These Projects?</h2>
<p>Sensors need host-side software to configure registers, send commands and interpret the bytes they return. Bosch supplies two layers in the affected development paths:</p>
<ol>
<li>A <strong>SensorAPI</strong> is a portable C driver integrated into a host MCU, SoC, Linux system or evaluation program. It translates application requests into sensor operations and parses data received from the device.</li>
<li><strong>COINES SDK</strong> is the development and evaluation environment around Bosch&rsquo;s Application Boards. It lets a developer configure sensors and collect their data from C or Python on a PC, or compile selected examples for the board&rsquo;s own microcontroller <a href="#ref2">[2]</a> <a href="#ref3">[3]</a>.</li>
</ol>
<style>
  .post-content .bosch-architecture img { display: block; width: 100%; max-width: 100%; height: auto; margin: 0; }
  .bosch-architecture-dark { display: none !important; }
  html.dark .bosch-architecture-light { display: none !important; }
  html.dark .bosch-architecture-dark { display: block !important; }
  #advisory-map + table { table-layout: fixed; font-family: var(--font-sans); }
  #advisory-map + table th,
  #advisory-map + table td { padding: 0.9rem 1rem; vertical-align: top; overflow-wrap: anywhere; }
  #advisory-map + table th:nth-child(1) { width: 22%; }
  #advisory-map + table th:nth-child(2) { width: 23%; }
  #advisory-map + table th:nth-child(3) { width: 32%; }
  #advisory-map + table th:nth-child(4) { width: 23%; }
  #advisory-map + table td:first-child { overflow-wrap: normal; }
  #advisory-map + table td:first-child a { white-space: nowrap !important; }
  #advisory-map + table td:last-child { font-family: var(--font-sans); font-size: inherit; color: var(--color-text); font-weight: inherit; }
</style>
<figure class="bosch-architecture">
  <img class="bosch-architecture-light" src="/images/posts/bosch-sensortec/bosch-sensortec-software-architecture.svg" alt="Two Bosch Sensortec software paths: a developer PC uses COINES over USB or BLE to reach an Application Board and sensor, while an embedded host integrates a SensorAPI and communicates with the sensor over I2C or SPI.">
  <img class="bosch-architecture-dark" src="/images/posts/bosch-sensortec/bosch-sensortec-software-architecture-dark.svg" alt="Two Bosch Sensortec software paths: a developer PC uses COINES over USB or BLE to reach an Application Board and sensor, while an embedded host integrates a SensorAPI and communicates with the sensor over I2C or SPI.">
  <figcaption><strong>Figure 1.</strong> COINES connects the development workstation and evaluation hardware. SensorAPIs run on the host that controls and reads a specific sensor. Bosch's BHI3xx evaluation guide shows the PC, Application Board and sensor shuttle arrangement <a href="#ref4">[4]</a>.</figcaption>
</figure>
<p>The four affected projects have different roles:</p>
<ul>
<li><a href="https://github.com/boschsensortec/COINES_SDK" rel="noopener noreferrer" target="_blank">COINES SDK</a>, short for Communication with Inertial and Environmental Sensors, is Bosch&rsquo;s evaluation SDK. Developers use its C API or Python interface to configure sensors and collect data through an Application Board <a href="#ref2">[2]</a> <a href="#ref3">[3]</a>.</li>
<li><a href="https://github.com/boschsensortec/BHI360_SensorAPI" rel="noopener noreferrer" target="_blank">BHI360 SensorAPI</a> is the host driver for a programmable six-axis smart IMU used for orientation, gestures, activity detection, wearables and hearables <a href="#ref5">[5]</a> <a href="#ref6">[6]</a> <a href="#ref7">[7]</a>.</li>
<li><a href="https://github.com/boschsensortec/BHI385_SensorAPI" rel="noopener noreferrer" target="_blank">BHI385 SensorAPI</a> drives a high-g smart IMU intended for sports motion, impact detection, sensor fusion and on-device AI workloads <a href="#ref8">[8]</a> <a href="#ref9">[9]</a> <a href="#ref10">[10]</a>.</li>
<li><a href="https://github.com/boschsensortec/BME690_SensorAPI" rel="noopener noreferrer" target="_blank">BME690 SensorAPI</a> configures and reads Bosch&rsquo;s gas, pressure, humidity and temperature sensor. Documented uses include indoor air quality, unusual gas detection, appliances and wearables <a href="#ref11">[11]</a> <a href="#ref12">[12]</a> <a href="#ref13">[13]</a>.</li>
</ul>
<p>COINES normally runs on a Windows, Linux or macOS workstation connected to an Application Board 3.0 or 3.1. Selected C examples can also run directly on the board&rsquo;s microcontroller. The SensorAPIs are portable C libraries integrated into the MCU, SoC or evaluation program that communicates with the sensor.</p>
<h2 id="advisory-map">Advisory Map</h2>
<table>
<thead>
<tr>
<th>CVE / score</th>
<th>Component and affected versions</th>
<th>Bug and input path</th>
<th>Bosch fix</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://www.cve.org/CVERecord?id=CVE-2026-42804" rel="noopener noreferrer" target="_blank">CVE-2026-42804</a><br>7.6 High</td>
<td>BHI360 SensorAPI; Bosch lists <code>2.1.0 &lt; 2.2.0</code> and commit <code>d6b200416a</code></td>
<td>Stack overflow while parsing a debug frame from the sensor FIFO</td>
<td>Latest SensorAPI update</td>
</tr>
<tr>
<td><a href="https://www.cve.org/CVERecord?id=CVE-2026-42805" rel="noopener noreferrer" target="_blank">CVE-2026-42805</a><br>8.4 High</td>
<td>BHI385 SensorAPI <code>1.1.0 &lt; 2.1.0</code></td>
<td>Stack overflow while parsing a debug event from the sensor FIFO</td>
<td><code>2.1.0</code> or later</td>
</tr>
<tr>
<td><a href="https://www.cve.org/CVERecord?id=CVE-2026-42806" rel="noopener noreferrer" target="_blank">CVE-2026-42806</a><br>4.3 Medium</td>
<td>BME690 SensorAPI v1.0.3 and earlier</td>
<td>Out-of-bounds read from a sensor-controlled <code>gas_index</code></td>
<td><code>1.0.4</code> or later</td>
</tr>
<tr>
<td><a href="https://www.cve.org/CVERecord?id=CVE-2026-42807" rel="noopener noreferrer" target="_blank">CVE-2026-42807</a><br>8.0 High</td>
<td>COINES SDK 2.10 through 2.12.2</td>
<td>Heap overflow from a USB or BLE response packet</td>
<td><code>2.12.3</code> or later</td>
</tr>
<tr>
<td><a href="https://www.cve.org/CVERecord?id=CVE-2026-42808" rel="noopener noreferrer" target="_blank">CVE-2026-42808</a><br>6.8 Medium</td>
<td>COINES SDK 2.0 through 2.11</td>
<td>Destination-buffer overflow from accumulated USB or BLE stream data</td>
<td><code>2.12.3</code> or later</td>
</tr>
</tbody>
</table>
<h2 id="cve-2026-42804-bhi360-debug-fifo-stack-overflow">CVE-2026-42804: BHI360 Debug FIFO Stack Overflow</h2>
<p><code>bhi360_parse_debug_message()</code> receives a debug event and treats its first payload byte as <code>msg_length</code>. In the affected code, that length controlled a <code>memcpy()</code> into a 17-byte stack buffer without first enforcing the 16-byte message limit <a href="#ref1">[1]</a>.</p>
<p>A crafted length above 16 can overwrite adjacent stack data on the system running the SensorAPI. Bosch describes malicious sensors, counterfeit modules and a man-in-the-middle on the communication bus as example threat positions. The advisory lists denial of service and potential code execution among the consequences.</p>
<p>The advisory also discusses format specifiers reaching a <code>printf</code>-style logging path. Exploiting the bug for code execution depends on compiler protections, ABI, logging implementation, memory layout and privileges. The affected function performs an unchecked stack write regardless of those conditions.</p>
<h2 id="cve-2026-42805-bhi385-debug-fifo-stack-overflow">CVE-2026-42805: BHI385 Debug FIFO Stack Overflow</h2>
<p>The BHI385 issue follows the same pattern. <code>bhi385_parse_debug_message()</code> reads an eight-bit length from <code>callback_info-&gt;data_ptr[0]</code> and copies that many bytes into <code>uint8_t debug_msg[17]</code> without clamping the value <a href="#ref1">[1]</a>.</p>
<p>Because the event originates in the sensor FIFO, the relevant trust boundary is again the host&rsquo;s I2C/SPI input. A malicious or compromised sensor or another bus participant could provide an oversized debug event, causing a firmware or process crash and potentially corrupting control data on the stack.</p>
<h2 id="cve-2026-42806-bme690-gas-index-out-of-bounds-read">CVE-2026-42806: BME690 Gas-index Out-of-bounds Read</h2>
<p>The BME690 driver preloads three groups of heater settings into a 30-byte stack array. Field data contains a four-bit <code>gas_index</code>, so the encoded value can range from 0 to 15, while the heater tables contain ten valid entries indexed from 0 to 9 <a href="#ref1">[1]</a>.</p>
<p>In affected versions, values from 10 to 15 were not rejected before the driver evaluated <code>set_val[20 + gas_index]</code>. This can read up to six bytes beyond the array. The resulting byte is exposed through the public <code>gas_wait</code> field, creating a measurement-integrity problem and a possible small disclosure of adjacent stack memory if the value is later logged or transmitted.</p>
<p>The bug reads beyond the array without writing to it. Bosch assigns it the lowest score in the set, CVSS 4.3 Medium.</p>
<h2 id="cve-2026-42807-coines-pc-bridge-heap-overflow">CVE-2026-42807: COINES PC Bridge Heap Overflow</h2>
<p>The COINES PC bridge decoder accepts a packet length supplied by an external device and forwards the response to <code>mqueue_add_data()</code>. Bosch reports that a connected USB or BLE device can advertise a payload of approximately 3 KB, while the default response-queue slot is 255 bytes <a href="#ref1">[1]</a>.</p>
<p>Without a destination-capacity check, the subsequent <code>memcpy()</code> can overwrite heap memory in the desktop process. A malicious or compromised evaluation board or BLE peripheral can use this path to crash the process or potentially execute code on the developer workstation.</p>
<h2 id="cve-2026-42808-coines-streaming-destination-buffer-overflow">CVE-2026-42808: COINES Streaming Destination-buffer Overflow</h2>
<p>The second COINES issue is in <code>coines_read_stream_sensor_data()</code>. The internal response handler did not preserve the caller&rsquo;s requested <code>number_of_samples</code> as the effective copy boundary. It accumulated streaming data and later copied the ring-buffer content into the caller-provided destination without verifying that the destination was large enough <a href="#ref1">[1]</a>.</p>
<p>A connected USB or BLE board capable of producing a sufficiently large stream can therefore trigger a heap or stack overflow in the host application. The concrete memory region depends on how the calling program allocated its destination buffer.</p>
<h2 id="what-the-git-history-shows">What the Git History Shows</h2>
<p>Bug age does not change severity, but it shows how long vulnerable source could spread into downstream copies. The public history dates the BHI360 issue to <strong>424 days</strong>, the BHI385 issue to <strong>242 days</strong> before the fix commit and <strong>276 days</strong> before the first patched tag, and the BME690 issue to <strong>459 days</strong>.</p>
<p>The tags do not always match Bosch&rsquo;s version guidance. The BHI360 debug parser is absent from public tag <code>v2.1.0</code> and first appears in <code>v2.2.0</code>. The BME690 repository has no public <code>v1.0.4</code> tag; its first public tag containing the fix is <code>v1.1.0</code>, although Bosch recommends <code>v1.0.4</code> or later.</p>
<p>For COINES, retained history proves that the streaming path remained vulnerable for at least <strong>619 days</strong>, but does not cover Bosch&rsquo;s full affected range back to 2019 <a href="#ref16">[16]</a>. The first public PC bridge guard also leaves <code>queue_mutex</code> locked, and the relevant C files are identical in tags <code>2.12.2</code> and <code>2.12.3</code> even though the prebuilt libraries and firmware differ <a href="#ref15">[15]</a>. Teams should therefore verify the exact host library and board firmware in use.</p>
<h2 id="exposure-and-remediation">Exposure and Remediation</h2>
<p>Bosch&rsquo;s CVSS vectors require physical, local or adjacent access <a href="#ref1">[1]</a>. The relevant attacker positions are a malicious or compromised sensor, another participant on the I2C or SPI bus, or an Application Board, USB device or BLE peripheral connected to a development machine. A downstream product could add a remote route to one of those interfaces, but BOSCH-SA-223618 does not document such a chain.</p>
<p>Bosch recommends current BHI360 and BHI385 SensorAPI updates, BME690 SensorAPI <code>v1.0.4</code> or later, and COINES SDK <code>v2.12.3</code> or later <a href="#ref1">[1]</a>. Integrators should also:</p>
<ul>
<li>inventory copied or vendored SensorAPI source instead of relying on package names;</li>
<li>verify the exact COINES host library and board firmware in use;</li>
<li>test oversized debug messages, invalid <code>gas_index</code> values and streams larger than the caller&rsquo;s destination buffer.</li>
</ul>
<h2 id="disclosure-timeline">Disclosure Timeline</h2>
<div style="position: relative; padding-left: 1.5rem; margin: 1.5rem 0;">
  <div style="position: absolute; left: 0.35rem; top: 0.5rem; bottom: 0.5rem; width: 2px; background: var(--color-border);"></div>
  <div style="position: relative; padding-bottom: 1.25rem;">
    <div style="position: absolute; left: -1.15rem; top: 0.35rem; width: 10px; height: 10px; border-radius: 50%; background: var(--color-accent); border: 2px solid var(--color-bg);"></div>
    <div style="font-size: 0.75rem; color: var(--color-text-secondary); font-weight: 600;">November 11, 2025</div>
    <div style="color: var(--color-text);">SecMate reports five vulnerabilities across COINES SDK, BME690 SensorAPI, BHI360 SensorAPI and BHI385 SensorAPI to Bosch PSIRT, with technical analyses and proof-of-concept test cases <a href="#ref14">[14]</a>.</div>
  </div>
  <div style="position: relative; padding-bottom: 1.25rem;">
    <div style="position: absolute; left: -1.15rem; top: 0.35rem; width: 10px; height: 10px; border-radius: 50%; background: var(--color-text-secondary); border: 2px solid var(--color-bg);"></div>
    <div style="font-size: 0.75rem; color: var(--color-text-secondary); font-weight: 600;">February 3, 2026</div>
    <div style="color: var(--color-text);">Bosch says the affected business unit is developing patches, requests an extension and asks SecMate to test the changes <a href="#ref14">[14]</a>.</div>
  </div>
  <div style="position: relative; padding-bottom: 1.25rem;">
    <div style="position: absolute; left: -1.15rem; top: 0.35rem; width: 10px; height: 10px; border-radius: 50%; background: var(--color-text-secondary); border: 2px solid var(--color-bg);"></div>
    <div style="font-size: 0.75rem; color: var(--color-text-secondary); font-weight: 600;">February 10–11, 2026</div>
    <div style="color: var(--color-text);">Bosch sends patch bundles for the four affected components. SecMate reviews them against the reported revisions and returns validation notes <a href="#ref14">[14]</a>.</div>
  </div>
  <div style="position: relative; padding-bottom: 1.25rem;">
    <div style="position: absolute; left: -1.15rem; top: 0.35rem; width: 10px; height: 10px; border-radius: 50%; background: var(--color-text-secondary); border: 2px solid var(--color-bg);"></div>
    <div style="font-size: 0.75rem; color: var(--color-text-secondary); font-weight: 600;">March 4, 2026</div>
    <div style="color: var(--color-text);">Bosch asks SecMate to test an additional set of COINES SDK changes <a href="#ref14">[14]</a>.</div>
  </div>
  <div style="position: relative; padding-bottom: 1.25rem;">
    <div style="position: absolute; left: -1.15rem; top: 0.35rem; width: 10px; height: 10px; border-radius: 50%; background: var(--color-text-secondary); border: 2px solid var(--color-bg);"></div>
    <div style="font-size: 0.75rem; color: var(--color-text-secondary); font-weight: 600;">April 30, 2026</div>
    <div style="color: var(--color-text);">Bosch reserves <code>CVE-2026-42804</code> through <code>CVE-2026-42808</code> and reports that the advisory draft is in preparation <a href="#ref14">[14]</a>.</div>
  </div>
  <div style="position: relative; padding-bottom: 1.25rem;">
    <div style="position: absolute; left: -1.15rem; top: 0.35rem; width: 10px; height: 10px; border-radius: 50%; background: #22c55e; border: 2px solid var(--color-bg);"></div>
    <div style="font-size: 0.75rem; color: var(--color-text-secondary); font-weight: 600;">August 31, 2026</div>
    <div style="color: var(--color-text);">Bosch PSIRT publishes <a href="https://psirt.bosch.com/security-advisories/bosch-sa-223618.html"><code>BOSCH-SA-223618</code></a>, covering five CVEs across the BHI360, BHI385 and BME690 Sensor APIs and COINES SDK <a href="#ref1">[1]</a>.</div>
  </div>
  <div style="position: relative;">
    <div style="position: absolute; left: -1.15rem; top: 0.35rem; width: 10px; height: 10px; border-radius: 50%; background: #f59e0b; border: 2px solid var(--color-bg);"></div>
    <div style="font-size: 0.75rem; color: var(--color-text-secondary); font-weight: 600;">September 2, 2026</div>
    <div style="color: var(--color-text);">SecMate publishes this technical analysis.</div>
  </div>
</div>
<p>We thank the Bosch PSIRT team for their collaboration throughout the disclosure process and for recognizing us in their 2026 Products Hall of Fame <a href="#ref17">[17]</a>.</p>
<h2 id="references">References</h2>
<ul>
<li>
<p><a id="ref1"></a>[1] Bosch PSIRT. &ldquo;Vulnerabilities in Bosch Sensortec SensorAPIs and COINES SDK.&rdquo; <code>BOSCH-SA-223618</code>, published August 31, 2026. <a href="https://psirt.bosch.com/security-advisories/bosch-sa-223618.html" rel="noopener noreferrer" target="_blank">Security advisory</a></p>
</li>
<li>
<p><a id="ref2"></a>[2] Bosch Sensortec. &ldquo;COINES SDK — Communication with Inertial and Environmental Sensors.&rdquo; <a href="https://github.com/boschsensortec/COINES_SDK" rel="noopener noreferrer" target="_blank">Official GitHub repository</a></p>
</li>
<li>
<p><a id="ref3"></a>[3] Bosch Sensortec. &ldquo;Application Board.&rdquo; <a href="https://www.bosch-sensortec.com/en/software-tools/tools/application-board" rel="noopener noreferrer" target="_blank">Product and development-platform overview</a></p>
</li>
<li>
<p><a id="ref4"></a>[4] Bosch Sensortec. &ldquo;BHy2xx/BHI3xx Evaluation Setup Guide.&rdquo; <code>BST-BHY2xx-BHI3xx-AN001</code>. <a href="https://www.bosch-sensortec.com/media/boschsensortec/downloads/application_notes_1/bst-bhy2xx-bhi3xx-an001.pdf" rel="noopener noreferrer" target="_blank">Application note</a></p>
</li>
<li>
<p><a id="ref5"></a>[5] Bosch Sensortec. &ldquo;BHI360 SensorAPI.&rdquo; <a href="https://github.com/boschsensortec/BHI360_SensorAPI" rel="noopener noreferrer" target="_blank">Official GitHub repository</a></p>
</li>
<li>
<p><a id="ref6"></a>[6] Bosch Sensortec. &ldquo;Smart sensor: BHI360.&rdquo; <a href="https://www.bosch-sensortec.com/en/products/smart-sensor-systems/bhi360" rel="noopener noreferrer" target="_blank">Product page</a></p>
</li>
<li>
<p><a id="ref7"></a>[7] Bosch Sensortec. &ldquo;BHI360 Datasheet.&rdquo; <code>BST-BHI360-DS000</code>. <a href="https://www.bosch-sensortec.com/media/boschsensortec/downloads/datasheets/bst-bhi360-ds000.pdf" rel="noopener noreferrer" target="_blank">Datasheet</a></p>
</li>
<li>
<p><a id="ref8"></a>[8] Bosch Sensortec. &ldquo;BHI385 SensorAPI.&rdquo; <a href="https://github.com/boschsensortec/BHI385_SensorAPI" rel="noopener noreferrer" target="_blank">Official GitHub repository</a></p>
</li>
<li>
<p><a id="ref9"></a>[9] Bosch Sensortec. &ldquo;Smart sensor: BHI385.&rdquo; <a href="https://www.bosch-sensortec.com/en/products/smart-sensor-systems/bhi385" rel="noopener noreferrer" target="_blank">Product page</a></p>
</li>
<li>
<p><a id="ref10"></a>[10] Bosch Sensortec. &ldquo;BHI385 Datasheet.&rdquo; <code>BST-BHI385-DS000</code>. <a href="https://www.bosch-sensortec.com/media/boschsensortec/downloads/datasheets/bst-bhi385-ds000.pdf" rel="noopener noreferrer" target="_blank">Datasheet</a></p>
</li>
<li>
<p><a id="ref11"></a>[11] Bosch Sensortec. &ldquo;BME690 SensorAPI.&rdquo; <a href="https://github.com/boschsensortec/BME690_SensorAPI" rel="noopener noreferrer" target="_blank">Official GitHub repository</a></p>
</li>
<li>
<p><a id="ref12"></a>[12] Bosch Sensortec. &ldquo;Gas sensor BME690.&rdquo; <a href="https://www.bosch-sensortec.com/en/products/environmental-sensors/gas-sensors/bme690" rel="noopener noreferrer" target="_blank">Product page</a></p>
</li>
<li>
<p><a id="ref13"></a>[13] Bosch Sensortec. &ldquo;BME690 Datasheet.&rdquo; <code>BST-BME690-DS001</code>. <a href="https://www.bosch-sensortec.com/media/boschsensortec/downloads/datasheets/bst-bme690-ds001.pdf" rel="noopener noreferrer" target="_blank">Datasheet</a></p>
</li>
<li>
<p><a id="ref14"></a>[14] Email correspondence between SecMate and Bosch PSIRT regarding <code>BOSCH-SA-223618</code>, November 11, 2025 to August 6, 2026. On file.</p>
</li>
<li>
<p><a id="ref15"></a>[15] Bosch Sensortec. Comparison of COINES SDK <code>2.12.2</code> and <code>2.12.3</code>. The public source comparison changes release metadata, prebuilt libraries and firmware, but not the four C files involved in the two findings. <a href="https://github.com/boschsensortec/COINES_SDK/compare/COINES_SDK_v2.12.2...COINES_SDK_v2.12.3" rel="noopener noreferrer" target="_blank">GitHub comparison</a></p>
</li>
<li>
<p><a id="ref16"></a>[16] Bosch Sensortec. &ldquo;COINES SDK Release Notes.&rdquo; Dates <code>2.0</code> to May 27, 2019, <code>2.10</code> to November 20, 2024, <code>2.12</code> to December 1, 2025 and <code>2.12.3</code> to June 8, 2026. <a href="https://github.com/boschsensortec/COINES_SDK/blob/COINES_SDK_v2.12.3/ReleaseNotes.txt" rel="noopener noreferrer" target="_blank">Release notes at tag 2.12.3</a></p>
</li>
<li>
<p><a id="ref17"></a>[17] Bosch PSIRT. &ldquo;Bosch Products Hall of Fame.&rdquo; The 2026 entries recognize Maxime Rossi Bellom and Ramtine Tofighi Shirazi of SecMate. <a href="https://psirt.bosch.com/hall-of-fame/bosch-products-hall-of-fame/" rel="noopener noreferrer" target="_blank">Bosch Products Hall of Fame</a></p>
</li>
</ul>
<hr>
<p><em>The SecMate Team</em></p>
]]></content:encoded><media:content url="https://blog.secmate.dev/images/og_image.jpg" medium="image"/></item></channel></rss>