GHSA-4v58-74mf-rjx3

Suggest an improvement
Source
https://github.com/advisories/GHSA-4v58-74mf-rjx3
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-4v58-74mf-rjx3/GHSA-4v58-74mf-rjx3.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-4v58-74mf-rjx3
Aliases
Downstream
MINI (36)
Published
2026-09-17T17:04:29Z
Modified
2026-09-17T17:15:04Z
Severity
  • 8.9 (High) CVSS_V4 - CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:H CVSS Calculator
Summary
RabbitMQ amqp091-go: Denial of Service via Malicious Field Length in AMQP Client
Details

Summary A vulnerability in the readField function allows a malicious or compromised AMQP server to trigger an unhandled runtime panic in the client application, leading to an immediate crash of the entire process.

Details When parsing incoming AMQP frames, the readField function processes byte-array fields (type tag 'x') by reading a 32-bit big-endian integer to determine the length of the data payload.

// read.go:253-263
case 'x':
    var len int32
    if err = binary.Read(r, binary.BigEndian, &len); err != nil {
        return nil, err
    }
    value := make([]byte, len)  // PANICS if len < 0

If a server transmits a length value of 0xFFFFFFFF, it is interpreted by the client as a signed 32-bit integer with a value of -1. Passing a negative integer to Go's built-in make() function for slice allocation triggers an unrecoverable runtime panic (panic: len out of range).

Because the reader goroutine handles network I/O without an explicit recover() wrapper, this panic propagates up to the runtime root, abruptly terminating the host application.

Attack Vector / Exploitation Scenario An attacker capable of spoofing, compromising, or controlling an AMQP broker can exploit this flaw during two primary phases:

  1. Connection Establishment: Sending a malicious connection.start handshake frame containing server-properties with an 'x' type field assigned a negative length.
  2. Message Delivery: Delivering a message payload where the header table contains a malformed field matching the criteria above.

Impact Availability: High. A single malformed frame can reliably crash the client process, resulting in a persistent Denial of Service (DoS) if the client automatically reconnects and receives the same payload.

Database specific
{
    "cwe_ids":  [
        "CWE-681"
    ],
    "github_reviewed":  true,
    "github_reviewed_at":  "2026-09-17T17:04:29Z",
    "nvd_published_at":  "2026-09-16T15:17:50Z",
    "severity":  "HIGH"
}
References

Affected packages

Go / github.com/rabbitmq/amqp091-go

Package

Name
github.com/rabbitmq/amqp091-go
View open source insights on deps.dev
Purl
pkg:golang/github.com/rabbitmq/amqp091-go

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
1.13.0

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-4v58-74mf-rjx3/GHSA-4v58-74mf-rjx3.json"