golang / vulndb

[mirror] The Go Vulnerability Database
Other
562 stars 61 forks source link

x/vulndb: potential Go vuln in github.com/ydb-platform/ydb-go-sdk: CVE-2023-45825 #2140

Closed GoVulnBot closed 1 year ago

GoVulnBot commented 1 year ago

CVE-2023-45825 references github.com/ydb-platform/ydb-go-sdk, which may be a Go module.

Description: ydb-go-sdk is a pure Go native and database/sql driver for the YDB platform. Since ydb-go-sdk v3.48.6 if you use a custom credentials object (implementation of interface Credentials it may leak into logs. This happens because this object could be serialized into an error message using fmt.Errorf("something went wrong (credentials: %q)", credentials) during connection to the YDB server. If such logging occurred, a malicious user with access to logs could read sensitive information (i.e. credentials) information and use it to get access to the database. ydb-go-sdk contains this problem in versions from v3.48.6 to v3.53.2. The fix for this problem has been released in version v3.53.3. Users are advised to upgrade. Users unable to upgrade should implement the fmt.Stringer interface in your custom credentials type with explicit stringify of object state.

References:

Cross references: No existing reports found with this module or alias.

See doc/triage.md for instructions on how to triage this report.

modules:
    - module: github.com/ydb-platform/ydb-go-sdk
      packages:
        - package: ydb-go-sdk
cves:
    - CVE-2023-45825
references:
    - advisory: https://github.com/ydb-platform/ydb-go-sdk/security/advisories/GHSA-q24m-6h38-5xj8
    - fix: https://github.com/ydb-platform/ydb-go-sdk/pull/859
    - web: https://github.com/ydb-platform/ydb-go-sdk/blob/master/credentials/credentials.go#L10
    - web: https://github.com/ydb-platform/ydb-go-sdk/blob/v3.48.6/internal/balancer/balancer.go#L71
tatianab commented 1 year ago

Duplicate of #2137