This vulnerability in OpenWrt's LuCI web interface achieves root persistence through a path traversal flaw in the instance_name2 parameter of the luci-app-openvpn configuration upload handler. Because LuCI runs as root on OpenWrt devices, any authenticated file-write primitive collapses the privilege boundary entirely—unlike a properly sandboxed web application where a file upload bug might be limited to the web server's user context. The attacker writes SSH keys to system directories, achieving persistence that survives device reboots and firmware upgrades due to OpenWrt's overlay filesystem behavior. This is not a one-off coding error; this is the second documented instance of this exact pattern in OpenWrt-related components (CVE-2019-15126 in Webmin exhibited the same secondary-parameter validation collapse), confirming a recurring vulnerability class where upload handlers accumulate new parameters over time without uniform validation propagation. Check whether luci-app-openvpn is actually needed in your deployment—WireGuard has largely superseded OpenVPN in forward-looking OpenWrt installations, and unused authenticated interfaces should be removed rather than audited. Assume default LuCI credentials exist on a significant fraction of deployed devices and audit for this explicitly. Implement file integrity monitoring on /etc/dropbear/ and /etc/authorized_keys/—the persistence mechanism targets these paths and will survive your next scheduled reboot, which many OpenWrt devices perform automatically. The CVSS 9.9 rating accurately captures severity but understates the operational reality: disclosure and patch availability are meaningless when the vulnerable population persists for quarters due to OpenWrt's manual update model and the compounding debt of overlay-persisted modifications that survive upgrades.