This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate stm32f4xx-hal

Dependencies

(33 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 defmt^1.0.11.0.1up to date
 bxcan^0.80.8.0up to date
 cortex-m^0.7.70.7.7up to date
 cortex-m-rt^0.7.50.7.5up to date
 nb^1.11.1.0up to date
 rand_core^0.9.30.10.0out of date
 synopsys-usb-otg^0.4.00.5.0out of date
 sdio-host^0.9.00.9.0up to date
 embedded-dma^0.2.00.2.0up to date
 embedded-display-controller^0.2.00.2.0up to date
 bare-metal^11.0.0up to date
 void^1.0.21.0.2up to date
 display-interface^0.4.10.5.0out of date
 fugit^0.3.70.3.9up to date
 fugit-timer^0.1.30.1.3up to date
 rtic-monotonic^1.01.0.0up to date
 systick-monotonic^1.0.11.0.1up to date
 cortex-m-rtic^1.1.41.1.4up to date
 rtic-time^2.0.12.0.1up to date
 embedded-hal-async^1.01.0.0up to date
 rtic^2.22.2.0up to date
 atomic-polyfill^1.0.31.0.3up to date
 stm32-fmc^0.4.00.4.0up to date
 enumflags2^0.7.120.7.12up to date
 embedded-storage^0.30.3.1up to date
 document-features^0.20.2.12up to date
 micromath^2.1.02.1.0up to date
 stm32f4^0.16.00.16.0up to date
 time ⚠️^0.3.440.3.47maybe insecure
 embedded-hal^1.01.0.0up to date
 embedded-hal-nb^1.01.0.0up to date
 embedded-io^0.6.10.7.1out of date
 stm32_i2s_v12x^0.5.00.5.1up to date

Dev dependencies

(27 total, 4 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 static_cell^2.1.12.1.1up to date
 defmt^1.0.11.0.1up to date
 defmt-rtt^1.01.1.0up to date
 panic-probe^1.01.0.0up to date
 panic-semihosting^0.6.00.6.0up to date
 cortex-m-semihosting^0.5.00.5.0up to date
 heapless^0.9.10.9.2up to date
 panic-halt^1.0.01.0.0up to date
 ssd1306^0.10.00.10.0up to date
 embedded-graphics^0.7.10.8.2out of date
 embedded-hal-bus^0.3.00.3.0up to date
 usb-device^0.3.10.3.2up to date
 usbd-serial^0.2.00.2.2up to date
 micromath^2.12.1.0up to date
 dwt-systick-monotonic^1.11.1.0up to date
 st7789^0.7.00.7.0up to date
 rtt-target^0.6.10.6.2up to date
 display-interface-spi^0.4.10.5.0out of date
 ist7920^0.1.10.1.1up to date
 smart-leds^0.4.00.4.0up to date
 ws2812-spi^0.5.10.5.1up to date
 hd44780-driver^0.4.00.4.0up to date
 display-interface^0.4.10.5.0out of date
 ft6x06^0.1.20.1.2up to date
 otm8009a^0.10.1.0up to date
 ushell^0.3.60.4.0out of date
 time ⚠️^0.30.3.47maybe insecure

Security Vulnerabilities

time: Denial of Service via Stack Exhaustion

RUSTSEC-2026-0009

Impact

When user-provided input is provided to any type that parses with the RFC 2822 format, a denial of service attack via stack exhaustion is possible. The attack relies on formally deprecated and rarely-used features that are part of the RFC 2822 format used in a malicious manner. Ordinary, non-malicious input will never encounter this scenario.

Patches

A limit to the depth of recursion was added in v0.3.47. From this version, an error will be returned rather than exhausting the stack.

Workarounds

Limiting the length of user input is the simplest way to avoid stack exhaustion, as the amount of the stack consumed would be at most a factor of the length of the input.