[pdm-devel] [PATCH manager 3/3] http server: allow unauthenticated access to /access/vncticket

Fabian Grünbichler f.gruenbichler at proxmox.com
Tue Nov 11 09:29:13 CET 2025


requests there are authenticated via the parameters, it only allows validating
a VNC ticket..

Signed-off-by: Fabian Grünbichler <f.gruenbichler at proxmox.com>
---

Notes:
    new in v1

 PVE/HTTPServer.pm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/PVE/HTTPServer.pm b/PVE/HTTPServer.pm
index 62b53fc74..660d87e84 100755
--- a/PVE/HTTPServer.pm
+++ b/PVE/HTTPServer.pm
@@ -70,6 +70,7 @@ sub auth_handler {
     if (
         ($rel_uri eq '/access/domains' && $method eq 'GET')
         || ($rel_uri eq '/access/ticket' && ($method eq 'GET' || $method eq 'POST'))
+        || ($rel_uri eq '/access/vncticket' && $method eq 'POST')
         || ($rel_uri eq '/access/openid/login' && $method eq 'POST')
         || ($rel_uri eq '/access/openid/auth-url' && $method eq 'POST')
     ) {
-- 
2.47.3





More information about the pdm-devel mailing list