mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
Prefer SOCKS_USER_PASS over SOCKS_NO_AUTH
This commit is contained in:
parent
ebb95d0f78
commit
a264c4feda
@ -1783,19 +1783,19 @@ parse_socks(const char *data, size_t datalen, socks_request_t *req,
|
|||||||
return -1;
|
return -1;
|
||||||
req->replylen = 2; /* 2 bytes of response */
|
req->replylen = 2; /* 2 bytes of response */
|
||||||
req->reply[0] = 5; /* socks5 reply */
|
req->reply[0] = 5; /* socks5 reply */
|
||||||
if (memchr(data+2, SOCKS_NO_AUTH, nummethods)) {
|
if (memchr(data+2, SOCKS_USER_PASS, nummethods)) {
|
||||||
req->reply[1] = SOCKS_NO_AUTH; /* tell client to use "none" auth
|
|
||||||
method */
|
|
||||||
req->socks_version = 5; /* remember we've already negotiated auth */
|
|
||||||
log_debug(LD_APP,"socks5: accepted method 0 (no authentication)");
|
|
||||||
r=0;
|
|
||||||
} else if (memchr(data+2, SOCKS_USER_PASS, nummethods)) {
|
|
||||||
req->auth_type = SOCKS_USER_PASS;
|
req->auth_type = SOCKS_USER_PASS;
|
||||||
req->reply[1] = SOCKS_USER_PASS; /* tell client to use "user/pass"
|
req->reply[1] = SOCKS_USER_PASS; /* tell client to use "user/pass"
|
||||||
auth method */
|
auth method */
|
||||||
req->socks_version = 5; /* remember we've already negotiated auth */
|
req->socks_version = 5; /* remember we've already negotiated auth */
|
||||||
log_debug(LD_APP,"socks5: accepted method 2 (username/password)");
|
log_debug(LD_APP,"socks5: accepted method 2 (username/password)");
|
||||||
r=0;
|
r=0;
|
||||||
|
} else if (memchr(data+2, SOCKS_NO_AUTH, nummethods)) {
|
||||||
|
req->reply[1] = SOCKS_NO_AUTH; /* tell client to use "none" auth
|
||||||
|
method */
|
||||||
|
req->socks_version = 5; /* remember we've already negotiated auth */
|
||||||
|
log_debug(LD_APP,"socks5: accepted method 0 (no authentication)");
|
||||||
|
r=0;
|
||||||
} else {
|
} else {
|
||||||
log_warn(LD_APP,
|
log_warn(LD_APP,
|
||||||
"socks5: offered methods don't include 'no auth' or "
|
"socks5: offered methods don't include 'no auth' or "
|
||||||
|
Loading…
Reference in New Issue
Block a user