mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-21 07:19:57 +00:00
handle SOCK5 authrosation with empty user/password
This commit is contained in:
parent
ca02b5d860
commit
fee940238a
@ -587,7 +587,10 @@ namespace proxy
|
||||
EnterState(GET5_USER_SIZE);
|
||||
break;
|
||||
case GET5_USER_SIZE:
|
||||
EnterState(GET5_USER, *sock_buff);
|
||||
if (*sock_buff)
|
||||
EnterState(GET5_USER, *sock_buff);
|
||||
else // empty user
|
||||
EnterState(GET5_PASSWD_SIZE);
|
||||
break;
|
||||
case GET5_USER:
|
||||
// skip user for now
|
||||
@ -595,7 +598,13 @@ namespace proxy
|
||||
if (m_parseleft == 0) EnterState(GET5_PASSWD_SIZE);
|
||||
break;
|
||||
case GET5_PASSWD_SIZE:
|
||||
EnterState(GET5_PASSWD, *sock_buff);
|
||||
if (*sock_buff)
|
||||
EnterState(GET5_PASSWD, *sock_buff);
|
||||
else // empty password
|
||||
{
|
||||
Socks5UserPasswdResponse ();
|
||||
EnterState(GET5_REQUESTV);
|
||||
}
|
||||
break;
|
||||
case GET5_PASSWD:
|
||||
// skip passwd for now
|
||||
|
Loading…
x
Reference in New Issue
Block a user