-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Aliases: CVE-2023-39321 Updates #2044 Change-Id: I6db59a9117cc5d2d7eae9a7a0148274759777769 Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/526169 Reviewed-by: Damien Neil <[email protected]> Auto-Submit: Tatiana Bradley <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
- Loading branch information
Showing
3 changed files
with
174 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"dataType": "CVE_RECORD", | ||
"dataVersion": "5.0", | ||
"cveMetadata": { | ||
"cveId": "CVE-2023-39321" | ||
}, | ||
"containers": { | ||
"cna": { | ||
"providerMetadata": { | ||
"orgId": "1bb62c36-49e3-4200-9d77-64a1400537cc" | ||
}, | ||
"title": "Panic when processing post-handshake message on QUIC connections in crypto/tls", | ||
"descriptions": [ | ||
{ | ||
"lang": "en", | ||
"value": "Processing an incomplete post-handshake message for a QUIC connection can cause a panic." | ||
} | ||
], | ||
"affected": [ | ||
{ | ||
"vendor": "Go standard library", | ||
"product": "crypto/tls", | ||
"collectionURL": "https://pkg.go.dev", | ||
"packageName": "crypto/tls", | ||
"versions": [ | ||
{ | ||
"version": "0", | ||
"lessThan": "1.20.8", | ||
"status": "affected", | ||
"versionType": "semver" | ||
}, | ||
{ | ||
"version": "1.21.0-0", | ||
"lessThan": "1.21.1", | ||
"status": "affected", | ||
"versionType": "semver" | ||
} | ||
], | ||
"programRoutines": [ | ||
{ | ||
"name": "QUICConn.HandleData" | ||
} | ||
], | ||
"defaultStatus": "unaffected" | ||
} | ||
], | ||
"problemTypes": [ | ||
{ | ||
"descriptions": [ | ||
{ | ||
"lang": "en", | ||
"description": "CWE-400: Uncontrolled Resource Consumption" | ||
} | ||
] | ||
} | ||
], | ||
"references": [ | ||
{ | ||
"url": "https://go.dev/issue/62266" | ||
}, | ||
{ | ||
"url": "https://go.dev/cl/523039" | ||
}, | ||
{ | ||
"url": "https://groups.google.com/g/golang-dev/c/2C5vbR-UNkI/m/L1hdrPhfBAAJ" | ||
}, | ||
{ | ||
"url": "https://pkg.go.dev/vuln/GO-2023-2044" | ||
} | ||
], | ||
"credits": [ | ||
{ | ||
"lang": "en", | ||
"value": "Marten Seemann" | ||
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
{ | ||
"schema_version": "1.3.1", | ||
"id": "GO-2023-2044", | ||
"modified": "0001-01-01T00:00:00Z", | ||
"published": "0001-01-01T00:00:00Z", | ||
"aliases": [ | ||
"CVE-2023-39321" | ||
], | ||
"summary": "Panic when processing post-handshake message on QUIC connections in crypto/tls", | ||
"details": "Processing an incomplete post-handshake message for a QUIC connection can cause a panic.", | ||
"affected": [ | ||
{ | ||
"package": { | ||
"name": "stdlib", | ||
"ecosystem": "Go" | ||
}, | ||
"ranges": [ | ||
{ | ||
"type": "SEMVER", | ||
"events": [ | ||
{ | ||
"introduced": "0" | ||
}, | ||
{ | ||
"fixed": "1.20.8" | ||
}, | ||
{ | ||
"introduced": "1.21.0-0" | ||
}, | ||
{ | ||
"fixed": "1.21.1" | ||
} | ||
] | ||
} | ||
], | ||
"ecosystem_specific": { | ||
"imports": [ | ||
{ | ||
"path": "crypto/tls", | ||
"symbols": [ | ||
"QUICConn.HandleData" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"references": [ | ||
{ | ||
"type": "REPORT", | ||
"url": "https://go.dev/issue/62266" | ||
}, | ||
{ | ||
"type": "FIX", | ||
"url": "https://go.dev/cl/523039" | ||
}, | ||
{ | ||
"type": "WEB", | ||
"url": "https://groups.google.com/g/golang-dev/c/2C5vbR-UNkI/m/L1hdrPhfBAAJ" | ||
} | ||
], | ||
"credits": [ | ||
{ | ||
"name": "Marten Seemann" | ||
} | ||
], | ||
"database_specific": { | ||
"url": "https://pkg.go.dev/vuln/GO-2023-2044" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
id: GO-2023-2044 | ||
modules: | ||
- module: std | ||
versions: | ||
- fixed: 1.20.8 | ||
- introduced: 1.21.0-0 | ||
fixed: 1.21.1 | ||
vulnerable_at: 1.21.0 | ||
packages: | ||
- package: crypto/tls | ||
symbols: | ||
- QUICConn.HandleData | ||
summary: Panic when processing post-handshake message on QUIC connections in crypto/tls | ||
description: |- | ||
Processing an incomplete post-handshake message for a QUIC connection can cause | ||
a panic. | ||
credits: | ||
- Marten Seemann | ||
references: | ||
- report: https://go.dev/issue/62266 | ||
- fix: https://go.dev/cl/523039 | ||
- web: https://groups.google.com/g/golang-dev/c/2C5vbR-UNkI/m/L1hdrPhfBAAJ | ||
cve_metadata: | ||
id: CVE-2023-39321 | ||
cwe: 'CWE-400: Uncontrolled Resource Consumption' |