mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Reject socks4 unauthenticated request
This commit is contained in:
parent
5b05b5c147
commit
ce9dfad347
1 changed files with 10 additions and 0 deletions
|
@ -110,6 +110,16 @@ func HandleConnection0(ctx context.Context, conn net.Conn, version byte, authent
|
||||||
}
|
}
|
||||||
switch request.Command {
|
switch request.Command {
|
||||||
case socks4.CommandConnect:
|
case socks4.CommandConnect:
|
||||||
|
if authenticator != nil && !authenticator.Verify(request.Username, "") {
|
||||||
|
err = socks4.WriteResponse(conn, socks4.Response{
|
||||||
|
ReplyCode: socks4.ReplyCodeRejectedOrFailed,
|
||||||
|
Destination: request.Destination,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return E.New("socks4: authentication failed, username=", request.Username)
|
||||||
|
}
|
||||||
err = socks4.WriteResponse(conn, socks4.Response{
|
err = socks4.WriteResponse(conn, socks4.Response{
|
||||||
ReplyCode: socks4.ReplyCodeGranted,
|
ReplyCode: socks4.ReplyCodeGranted,
|
||||||
Destination: M.SocksaddrFromNet(conn.LocalAddr()),
|
Destination: M.SocksaddrFromNet(conn.LocalAddr()),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue