Commit 3d23a999 authored by Jacob Champion's avatar Jacob Champion
Browse files

CVE-2017-3167: add documentation to ap_get_basic_auth_pw()

Now that we've released, add clarifying comments to the now-deprecated
API.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1799374 13f79535-47bb-0310-9956-ffa450edef68
parent 4061f74b
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -577,8 +577,15 @@ AP_DECLARE_HOOK(int, note_auth_failure, (request_rec *r, const char *auth_type))

/**
 * Get the password from the request headers. This function has multiple side
 * effects due to its prior use in the old authentication framework.
 * ap_get_basic_auth_components() should be preferred.
 * effects due to its prior use in the old authentication framework, including
 * setting r->user (which is supposed to indicate that the user in question has
 * been authenticated for the current request).
 *
 * Modules which call ap_get_basic_auth_pw() during the authentication phase
 * MUST either immediately authenticate the user after the call, or else stop
 * the request immediately with an error response, to avoid incorrectly
 * authenticating the current request. (See CVE-2017-3167.) The replacement
 * ap_get_basic_auth_components() API should be preferred.
 *
 * @deprecated @see ap_get_basic_auth_components
 * @param r The current request