Advisory Database
  • Advisories
  • Dependency Scanning
  1. golang
  2. ›
  3. github.com/flynn/noise
  4. ›
  5. GMS-2022-813

GMS-2022-813: Improper nonce handling: potential overflow, potential state DoS

February 15, 2022 (updated August 29, 2023)

The Go package github.com/flynn/noise, a Noise Protocol implementation, has two bugs in nonce handling in versions prior to v1.0.0.

Issue 1: Potential nonce overflow

If 2^64 (~18.4 quintillion) or more messages are encrypted with Encrypt after handshaking, the nonce counter will wrap around, causing multiple messages to be encrypted with the same key and nonce, resulting in a potentially catastrophic weakening of the security properties of the symmetric cipher.

This has been resolved in the patched version by returning ErrMaxNonce from the CipherState Encrypt and Decrypt methods before the reserved maximum nonce is reached. If this error is encountered, the program should handshake again to start with a fresh CipherState.

Issue 2: Potential denial of service via invalid ciphertext

If an attacker sends an invalid ciphertext into one peer’s Decrypt, the nonce is incremented unconditionally. This causes a desync of the CipherState due to a nonce mismatch between the peers, resulting in a failure to decrypt all subsequent messages. A new handshake will be required to establish a new CipherState.

This has been resolved in the patched version by returning authentication errors from Decrypt before incrementing the nonce.

Patches

Fixed in https://github.com/flynn/noise/pull/44, tagged as v1.0.0.

Acknowledgements

These issues were discovered during an audit of a user of this package (dnstt). Thanks to UC Berkley for commissioning the audit, and to David Fifield and Nathan Brown for their collaboration on the fixes. The fixed issues are noted in the audit as:

  • UCB-02-003 Potential nonce overflow in Noise protocol
  • UCB-02-006 DoS due to unconditional nonce increment

References

  • github.com/advisories/GHSA-g9mp-8g3h-3c5c
  • github.com/flynn/noise/security/advisories/GHSA-g9mp-8g3h-3c5c

Code Behaviors & Features

Detect and mitigate GMS-2022-813 with GitLab Dependency Scanning

Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →

Affected versions

All versions before 1.0.0

Fixed versions

  • v1.0.0

Solution

Upgrade to version 1.0.0 or above.

Source file

go/github.com/flynn/noise/GMS-2022-813.yml

Spotted a mistake? Edit the file on GitLab.

  • Site Repo
  • About GitLab
  • Terms
  • Privacy Statement
  • Contact

Page generated Wed, 14 May 2025 12:15:02 +0000.