PT-2026-82001 · Pypi · Reachy Mini
Published
2026-08-25
·
Updated
2026-08-25
CVSS v3.1
5.3
Medium
| Vector | AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N |
Summary
The Reachy Mini daemon exposes the “/api/media/sounds/upload” endpoint without authentication and file validation mechanisms.
An attacker can use this endpoint to upload malicious files into the file system that will propagate in future attacks.
Compromise Chain: Unauthenticated to Full Root Access
This issue is part of a full compromise chain allowing an unauthenticated user to gain root access on the Reachy’s operating system:
- Unrestricted File Upload in Media Sounds Upload API <= current finding
- Bluetooth Authentication Bypass
- Bluetooth Directory Traversal
Description
The root cause of the issue is at the handler located in “src/daemon/app/routers/media.py” file at the “upload sound” method:
py
@router.post("/sounds/upload")
async def upload sound(
file: UploadFile = File(...),
) -> dict[str, str]:
"""Upload a sound file to the daemon's temporary sound directory.
The file is saved to ``/tmp/reachy mini sounds/<original filename>``.
If a file with the same name already exists it is overwritten.
Returns:
JSON with the absolute *path* of the saved file on the daemon.
"""
if not file.filename:
raise HTTPException(status code=400, detail="Filename is required")
# Reject path traversal
filename = Path(file.filename).name
if not filename or filename in (".", ".."):
raise HTTPException(status code=400, detail="Invalid filename")
os.makedirs(SOUNDS TMP DIR, exist ok=True)
dest = os.path.join(SOUNDS TMP DIR, filename)
content = await file.read()
with open(dest, "wb") as f:
f.write(content)
return {"status": "ok", "path": dest}This endpoint lacks multiple defence mechanisms:
- No authentication mechanism.
- No file extension validation.
- No file content/size validation.
Additionally, the daemon is bound to the 0.0.0.0 network interfaces (a.k.a. all network interfaces) by default along with permissive CORS ( allow origins=[“*”] ) meaning the following API endpoint is exposed to every network interface the daemon is connected to.
PoC
- Start the daemon in simulation mode (command depends on the installed environment):
shell
.venv/bin/mjpython -m reachy mini.daemon.app.main --sim --no-media- After that check that the media upload API endpoint is activated and you can upload a wav file:
shell
curl -X POST http://<daemon domain>:<daemon port>/api/media/sounds/upload
-F "file=@/path/to/your/file.wav"- Now attempt to create a “.sh” file containing a script and upload it:
shell
curl -X POST http://<daemon domain>:<daemon port>/api/media/sounds/upload
-F "file=@/path/to/your/script.sh"- Now error message will be received and you will see that the script file was successfully uploaded to disk.
Impact
Due to this issue, an attacker can upload malicious files instead of the intended sounds files, harming the integrity of the stored data and allowing an attacker to propagate a foothold in cases another vulnerabilities would arise.
Fix suggestion
Perform the following check on the API endpoint:
- Validate that the file extension contains only desired extensions (allow-list approach).
- Validate that the uploaded file’s content matches the desired extension (Magic numbers, and known file structure per file type).
- Enforce authentication on the file upload endpoint.
Credit
The vulnerability was discovered by Natan Nehorai of the JFrog Vulnerability Research team.
Fix
Unrestricted File Upload
Found an issue in the description? Have something to add? Feel free to write us 👾
Weakness Enumeration
Related Identifiers
Affected Products
Reachy Mini