PYSEC-2026-3692
Pydantic AI: Unvalidated UploadedFile references in UI adapters allow server-side file access using the application's credentials
빠른 조치
PYSEC-2026-3692 — pydantic-ai: 아래 명령으로 수정 버전으로 올리세요.
pip install --upgrade 'pydantic-ai>=1.106.0' 상세
### Summary
A client that can submit message history to a Pydantic AI UI adapter can reference arbitrary files in the application's model-provider or cloud-storage account. The server forwards the reference to the model provider, which fetches it using the server's own credentials, allowing the client to read files it should not have access to.
### Details
UI adapters reconstruct file parts from client-submitted message history and forward them to the model provider. File **URL** parts are validated against a scheme allowlist before being forwarded, but `UploadedFile` references — which point to a file by provider file ID or cloud-storage URI (e.g. `s3://…`, `gs://…`) — were forwarded without validation.
Because the provider resolves an `UploadedFile` using the server-side identity (IAM role, service account, or provider API key) rather than the client's, a client that crafts message history containing an attacker-chosen `UploadedFile` can cause the server to read objects belonging to its own account or to other tenants, given a referenceable identifier.
### Impact
Applications that pass untrusted client-submitted message history to an agent through a UI adapter (such as the Vercel AI adapter). Exploitation requires the attacker to reference a valid file identifier; depending on how the application names objects, such identifiers are not always unguessable.
### Patches
Upgrade to `1.106.0` (1.x) or `2.0.0b6` (the 2.x beta line), which validate `UploadedFile` references on client-submitted messages the same way file URLs are validated.
### Workarounds
If users cannot upgrade, do not pass untrusted client-submitted message history to the agent, or strip `UploadedFile` parts from incoming messages before running the agent.
이 버전이 영향받나요?
사용 중인 패키지 버전을 입력하면 즉시 평가합니다.
영향 패키지
참고
- https://github.com/pydantic/pydantic-ai/security/advisories/GHSA-h7p7-w5gc-xj3w [WEB]
- https://nvd.nist.gov/vuln/detail/CVE-2026-54249 [ADVISORY]
- https://github.com/pydantic/pydantic-ai [PACKAGE]
- https://github.com/pydantic/pydantic-ai/releases/tag/v1.106.0 [WEB]
- https://github.com/pydantic/pydantic-ai/releases/tag/v2.0.0b6 [WEB]
- https://pypi.org/project/pydantic-ai [PACKAGE]
- https://github.com/advisories/GHSA-h7p7-w5gc-xj3w [ADVISORY]