CVE-2026-14368
Last modified
CVE-2026-14368 is a medium-severity vulnerability rated 5.4/10 on the CVSS scale. The LwM2M JSON content formatter's get_string() in subsys/net/lib/lwm2m/lwm2m_rw_json.c copies a parsed JSON string into a caller-supplied buffer and NUL-terminates it. The length guard used if (string_length > buflen), which accepts a string whose length is exactly buflen. EPSS estimates a 0.23% chance of exploitation in the next 30 days.
Description
The LwM2M JSON content formatter's get_string() in subsys/net/lib/lwm2m/lwm2m_rw_json.c copies a parsed JSON string into a caller-supplied buffer and NUL-terminates it. The length guard used if (string_length > buflen), which accepts a string whose length is exactly buflen. After memcpy() fills the whole buffer, buf[string_length] = '\0' then writes one byte past the end of the buffer (CWE-787). The string value and its length are taken directly from the incoming CoAP payload during a LwM2M WRITE: do_write_op_json() parses the payload obtained from coap_packet_get_payload(), and get_string() is invoked from lwm2m_write_handler() (engine_get_string() in subsys/net/lib/lwm2m/lwm2m_message_handling.c) for a LWM2M_RES_TYPE_STRING resource. The destination buf/buflen is either the resource instance's fixed data buffer (res_inst->data_ptr/max_data_len) or the engine validation buffer (msg->ctx->validate_buf). A LwM2M server (the client's DTLS peer) can therefore write a string resource with a value whose length equals the target buffer size and force a one-byte overflow. The overflow is a single out-of-bounds write of the constant byte 0x00 immediately past the resource or validation buffer, corrupting the adjacent byte in memory. It is not an information leak and the written value is fixed, so it is not a direct code-execution primitive, but it can corrupt adjacent state (an adjacent resource value, a length/flag field, or a struct field) and cause data corruption or a crash. Triggering the write is deterministic; the resulting impact depends on memory layout. The fix changes the guard to string_length >= buflen, rejecting the exact-length case and aligning the JSON formatter with the other content formatters (lwm2m_rw_plain_text.c, lwm2m_rw_oma_tlv.c, lwm2m_rw_senml_json.c, lwm2m_rw_cbor.c, lwm2m_rw_senml_cbor.c), which already used the correct boundary check.
Metrics
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| zephyrproject | zephyr | >= 3.2.0, < 4.4.2 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-14368?
How severe is CVE-2026-14368?
How do I fix CVE-2026-14368?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-14362HashiCorp memberlist before version 0.6.0 is vulnerable to a…4.9
- CVE-2026-14363Improper neutralization of special elements used in an SQL c…9.8
- CVE-2026-14364The TrueBooker – Appointment Booking and Scheduler System pl…9.8
- CVE-2026-14365The TrueBooker – Appointment Booking and Scheduler System pl…9.8
- CVE-2026-14366The Silicon Labs SiWx917 WiFi driver's transmit callback siw…6.4
- CVE-2026-14367The I3C IBI subsystem in drivers/i3c/i3c_ibi_workq.c hands o…3.1
- CVE-2026-1437Reflected Cross-Site Scripting (XSS) vulnerability in the Gr…6.1
- CVE-2026-14371The Lenovo XClarity Integrator for Windows Admin Center plug…8.8
- CVE-2026-14372The Bit Form – Contact Form, Payment Forms, Multi Step Forms…7.1
- CVE-2026-14373HashiCorp Nomad and Nomad Enterprise did not enforce the all…7.7
- CVE-2026-1438Reflected Cross-Site Scripting (XSS) vulnerability in the Gr…6.1
- CVE-2026-14380DBI versions before 1.650 for Perl are vulnerable to code in…8.8
Are you affected by CVE-2026-14368?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
