fix: add bounds check before memcpy in radio.c#48
Closed
orbisai0security wants to merge 2 commits into
Closed
Conversation
Automated security fix generated by OrbisAI Security
deadprogram
added a commit
that referenced
this pull request
Jun 12, 2026
Reject negative or overlong ssid_len and pwd_len in station and AP configurations to prevent integer/cast wrap-around that causes out-of-bounds memcpy. Orginally suggested by PR #48 thanks! Signed-off-by: deadprogram <ron@hybridgroup.com>
deadprogram
added a commit
that referenced
this pull request
Jun 12, 2026
Reject negative or overlong ssid_len and pwd_len in station and AP configurations to prevent integer/cast wrap-around that causes out-of-bounds memcpy. Orginally suggested by PR #48 thanks! Signed-off-by: deadprogram <ron@hybridgroup.com>
Member
|
Replaced by #49 thank you. |
Author
|
Thanks for taking a look and for the replacement fix in #49. My goal was to highlight the missing validation around ssid_len/pwd_len before the memcpy operations. Your implementation handles the issue more cleanly, especially the negative-length and cast-wraparound cases. Glad the report was useful. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix critical severity security issue in
radio.c.Vulnerability
V-001radio.c:405Description: The radio.c file copies WiFi SSID and password into fixed-size wifi_config_t struct fields using memcpy with caller-supplied lengths (ssid_len, pwd_len) without validating that these lengths fit within the destination buffers. The ESP-IDF wifi_config_t struct defines ssid as 32 bytes and password as 64 bytes. If ssid_len > 32 or pwd_len > 64, the memcpy will write beyond the struct field boundaries, corrupting adjacent memory and potentially enabling arbitrary code execution.
Evidence
Exploitation scenario: An attacker who can supply WiFi configuration parameters (through a provisioning API, BLE configuration service, or serial interface) provides an SSID of 64 bytes or a password of 128 bytes.
Scanner confirmation: multi_agent_ai rule
V-001flagged this pattern.Production code: This file is in the production codebase, not test-only code.
Threat Model Context
This is a Go service - vulnerabilities in HTTP handlers are remotely exploitable.
Changes
radio.cVerification
Security Invariant
Regression test
This test guards against regressions — it's useful independent of the code change above.
Automated security fix by OrbisAI Security