mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Reject socks4 unauthenticated request
This commit is contained in:
parent
5b05b5c147
commit
e781e86e32
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 {
|
||||
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{
|
||||
ReplyCode: socks4.ReplyCodeGranted,
|
||||
Destination: M.SocksaddrFromNet(conn.LocalAddr()),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue