GO-2023-2133

Source
https://pkg.go.dev/vuln/GO-2023-2133
Import Source
https://vuln.go.dev/ID/GO-2023-2133.json
JSON Data
https://api.osv.dev/v1/vulns/GO-2023-2133
Aliases
Published
2023-10-24T20:27:36Z
Modified
2024-05-20T16:03:47Z
Summary
Authorization bypass in github.com/nats-io/nats-server/v2
Details

Without any authorization rules in the nats-server, users can connect without authentication.

Before nats-server 2.2.0, all authentication and authorization rules for a nats-server lived in an "authorization" block, defining users. With nats-server 2.2.0 all users live inside accounts. When using the authorization block, whose syntax predates this, those users will be placed into the implicit global account, "$G". Users inside accounts go into the newer "accounts" block.

If an "accounts" block is defined, in simple deployment scenarios this is often used only to enable client access to the system account. When the only account added is the system account "$SYS", the nats-server would create an implicit user in "$G" and set it as the "noauthuser" account, enabling the same "without authentication" logic as without any rules.

This preserved the ability to connect simply, and then add one authenticated login for system access.

But with an "authorization" block, this is wrong. Users exist in the global account, with login rules. And in simple testing, they might still connect fine without administrators seeing that authentication has been disabled.

In the fixed versions, using an "authorization" block will inhibit the implicit creation of a "$G" user and setting it as the "noauthuser" target. In unfixed versions, just creating a second account, with no users, will also inhibit this behavior.

Database specific
{
    "review_status": "REVIEWED",
    "url": "https://pkg.go.dev/vuln/GO-2023-2133"
}
References
Credits
    • Alex Herrington

Affected packages

Go / github.com/nats-io/nats-server/v2

Package

Name
github.com/nats-io/nats-server/v2
View open source insights on deps.dev
Purl
pkg:golang/github.com/nats-io/nats-server/v2

Affected ranges

Type
SEMVER
Events
Introduced
2.2.0
Fixed
2.9.23
Introduced
2.10.0
Fixed
2.10.2

Ecosystem specific

{
    "imports": [
        {
            "path": "github.com/nats-io/nats-server/v2/server",
            "symbols": [
                "ConfigureOptions",
                "New",
                "NewServer",
                "Options.ProcessConfigFile",
                "Options.processConfigFileLine",
                "ProcessConfigFile",
                "Run",
                "Server.EnableJetStream",
                "Server.Reload",
                "Server.ReloadOptions",
                "Server.SetDefaultSystemAccount",
                "Server.SetSystemAccount",
                "Server.Start",
                "Server.configureAccounts"
            ]
        }
    ]
}