This CVE exposes a design pathology, not just a vulnerability. The crafted link can exfiltrate management credentials from localStorage — but the more important question is why those credentials were in localStorage at a management interface at all. LocalStorage is synchronous, domain-bound, and offers no encryption at rest. It is an unusual storage location for credentials that should be scoped to authenticated server sessions, not scattered into client-side browser storage. The 5.0.8 patch may eliminate the retrieval vector, but it's unclear whether it removes credential persistence entirely or merely hardens the read path — and that distinction matters enormously for residual risk. If the credentials remain in localStorage but are harder to retrieve via crafted links, they remain vulnerable to other vectors: browser extensions, XSS in embedded contexts, or logReferer leakage. Treat this as a partial fix until you confirm the storage is eliminated, not just the exfiltration vector. The 'all platforms' scope is also important: this is a web application flaw affecting every LWEB-802 deployment with a web interface regardless of whether the underlying Loytec device runs Linux, VxWorks, or proprietary firmware — the credential handling code escaped platform-specific review. The CVSS 7.7 is conservative; the unauthenticated, remote, no-user-interaction profile with full management-plane access suggests a higher realistic impact, particularly given that these credentials control building HVAC, lighting, elevators, and potentially life-safety subsystems. If credentials give physical access control to hospitals or airports, the impact floor is catastrophic before CVSS calculations begin. Beyond the immediate fix, verify that management credentials are not transmitted in cleartext over the network during normal session initialization — localStorage exposure often accompanies plaintext transmission, meaning this CVE may document only one manifestation of a credential handling system broken at multiple points.