Skip to content

Integer Underflow during defragmentation

High
chrysn published GHSA-2fpr-82xr-p887 Apr 24, 2023

Package

RIOT-OS

Affected versions

< 2022.10

Patched versions

2022.10

Description

Impact

RIOT-OS contains a network stack with the ability to process 6LoWPAN frames. An attacker can send a crafted frame to the device resulting in a large out of bounds write beyond the packet buffer. The write will create a hard fault exception after reaching the last page of RAM. The hard fault is not handled and the system will be stuck until reset. Thus the impact is denial of service.

Patches

Workarounds

  • Disabling support for fragmented IP datagrams, or
  • Backport the patches listed above

For more information

If you have any questions or comments about this advisory:

Bug Details

In _6lo_frag_size the fragment size is calculated as frag_size = pkt->size - sizeof(sixlowpan_frag_n_t); (source).
sizeof(sixlowpan_frag_n_t) is 4 bytes but pkt->size can be less resulting in an integer underflow.
_rbuf_add later uses this value as size argument for memcpy (source).

Severity

High
7.5
/ 10

CVSS base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

CVE ID

CVE-2023-24821

Credits