diff options
author | Sven Nierlein <sven@nierlein.de> | 2020-09-23 17:19:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 17:19:23 +0200 |
commit | 739a7bbe7ceacab9809998d9bf06a4460b44c522 (patch) | |
tree | aacca7151874c919a4cb1dcbdc31af56bc7563b8 /plugins/check_http.c | |
parent | cadac85e12d48d662ff39bfc9f5feb5601af1485 (diff) | |
parent | 09a2210c477932c8df40ff820414b3a9bbec10fb (diff) | |
download | monitoring-plugins-739a7bbe7ceacab9809998d9bf06a4460b44c522.tar.gz |
Merge pull request #1514 from Rasp8e/master
Proxy authorization is now kept when using PROXY + CONNECT to HTTPS
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r-- | plugins/check_http.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index de59a068..e2298b17 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c @@ -931,6 +931,21 @@ check_http (void) if (verbose) printf ("Entering CONNECT tunnel mode with proxy %s:%d to dst %s:%d\n", server_address, server_port, host_name, HTTPS_PORT); asprintf (&buf, "%s %s:%d HTTP/1.1\r\n%s\r\n", http_method, host_name, HTTPS_PORT, user_agent); + if (strlen(proxy_auth)) { + base64_encode_alloc (proxy_auth, strlen (proxy_auth), &auth); + xasprintf (&buf, "%sProxy-Authorization: Basic %s\r\n", buf, auth); + } + /* optionally send any other header tag */ + if (http_opt_headers_count) { + for (i = 0; i < http_opt_headers_count ; i++) { + if (force_host_header != http_opt_headers[i]) { + xasprintf (&buf, "%s%s\r\n", buf, http_opt_headers[i]); + } + } + /* This cannot be free'd here because a redirection will then try to access this and segfault */ + /* Covered in a testcase in tests/check_http.t */ + /* free(http_opt_headers); */ + } asprintf (&buf, "%sProxy-Connection: keep-alive\r\n", buf); asprintf (&buf, "%sHost: %s\r\n", buf, host_name); /* we finished our request, send empty line with CRLF */ |