mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
auth: Actually check SASL identity argument before using it
Fixes GHSA-4g76-w3xw-2x6w.
This commit is contained in:
parent
ac4a75b7d5
commit
9f58cb64b3
2 changed files with 5 additions and 2 deletions
|
@ -81,6 +81,9 @@ func (s *SASLAuth) CreateSASL(mech string, remoteAddr net.Addr, successCb func(i
|
|||
if identity == "" {
|
||||
identity = username
|
||||
}
|
||||
if identity != username {
|
||||
return ErrInvalidAuthCred
|
||||
}
|
||||
|
||||
err := s.AuthPlain(username, password)
|
||||
if err != nil {
|
||||
|
|
|
@ -75,13 +75,13 @@ func TestCreateSASL(t *testing.T) {
|
|||
|
||||
t.Run("PLAIN with authorization identity", func(t *testing.T) {
|
||||
srv := a.CreateSASL("PLAIN", &net.TCPAddr{}, func(id string) error {
|
||||
if id != "user1a" {
|
||||
if id != "user1" {
|
||||
t.Fatal("Wrong authorization identity passed:", id)
|
||||
}
|
||||
return nil
|
||||
})
|
||||
|
||||
_, _, err := srv.Next([]byte("user1a\x00user1\x00aa"))
|
||||
_, _, err := srv.Next([]byte("user1\x00user1\x00aa"))
|
||||
if err != nil {
|
||||
t.Error("Unexpected error:", err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue