From 7db767599a227a0be25d868b2c3332ab908660e6 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Sun, 6 Dec 2015 10:07:39 +0100 Subject: [PATCH] Added /VPN to the list of known URLs for auth This URL is used by certain versions of the anyconnect client. Reported by sskaje. --- src/worker-http.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/worker-http.c b/src/worker-http.c index abe0b880..b1b76f1a 100644 --- a/src/worker-http.c +++ b/src/worker-http.c @@ -55,6 +55,7 @@ struct known_urls_st { const static struct known_urls_st known_urls[] = { LL("/", get_auth_handler, post_auth_handler), LL("/auth", get_auth_handler, post_auth_handler), + LL("/VPN", get_auth_handler, post_auth_handler), #ifdef ANYCONNECT_CLIENT_COMPAT LL("/1/index.html", get_empty_handler, NULL), LL("/1/Linux", get_empty_handler, NULL),