CVE-2026-19757 is a path traversal in lamp-cloud's FileAnyoneController affecting versions up to 5.10.0. The 'bucket' and 'bizType' parameter naming is your first warning sign — this vocabulary signals object-storage abstraction (S3, MinIO, or similar) where developers reasonably assume filesystem semantics don't apply to their layer. That assumption is exactly what's being exploited here.

The vulnerability exists in the file upload handler where bucket/bizType parameters are used to construct storage paths without proper sanitization. If the codebase implements bucket-as-directory on local filesystem rather than genuine S3 SDK calls, the attack surface is direct filesystem access through a cloud-shaped namespace — a pattern historyrhyme calls 'cargo-cult abstraction,' common in projects designed to look cloud-native without underlying cloud guarantees. Either way, the path traversal is exploitable.

The compounding risk: public exploit available, vendor non-responsive, and EPSS score of 0.00424 suggesting this hasn't hit most organization's radar yet. The CVSS 7.3 is conservative for path traversal with remote exploitability in a cloud platform — bucket manipulation often implies cross-tenant exposure in multi-tenant architectures.

What to do: assume the exploit window is already open. Audit your lamp-cloud deployment for FileAnyoneController usage. If you're passing user-controlled bucket/bizType values without server-side validation, that's your exploit path. Implement path normalization at the application layer — normalize the path, validate it stays within intended boundaries, then operate, and do this at the trust boundary, not at the abstraction layer. The 'fixed in 5.10.1' claim is unverified until you can confirm a commit actually touched FileAnyoneController.java — many abandoned projects version-bump without patching. If lamp-cloud is effectively unmaintained, treat this as orphaned exposure: no advisory coming, no patch coming, your defensive posture must shift from 'wait for vendor' to 'mitigate now.'