-
Notifications
You must be signed in to change notification settings - Fork 61
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-26556 Fixes #1732 Change-Id: Ib07e34bc913ff8974be7ee9f35bb1a4f88b8b014 Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/508636 Run-TryBot: Damien Neil <[email protected]> Reviewed-by: Jonathan Amsterdam <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Tatiana Bradley <[email protected]>
- Loading branch information
Showing
2 changed files
with
93 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,71 @@ | ||
{ | ||
"schema_version": "1.3.1", | ||
"id": "GO-2023-1732", | ||
"modified": "0001-01-01T00:00:00Z", | ||
"published": "0001-01-01T00:00:00Z", | ||
"aliases": [ | ||
"CVE-2023-26556" | ||
], | ||
"summary": "Timing attack from non-constant time scalar multiplication in github.com/bnb-chain/tss-lib", | ||
"details": "Timing attack from non-constant time scalar multiplication in github.com/bnb-chain/tss-lib.", | ||
"affected": [ | ||
{ | ||
"package": { | ||
"name": "github.com/bnb-chain/tss-lib", | ||
"ecosystem": "Go" | ||
}, | ||
"ranges": [ | ||
{ | ||
"type": "SEMVER", | ||
"events": [ | ||
{ | ||
"introduced": "0" | ||
}, | ||
{ | ||
"fixed": "1.3.6-0.20230324145555-bb6fb30bd3eb" | ||
} | ||
] | ||
} | ||
], | ||
"ecosystem_specific": { | ||
"imports": [ | ||
{ | ||
"path": "github.com/bnb-chain/tss-lib/common" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"package": { | ||
"name": "github.com/binance-chain/tss-lib", | ||
"ecosystem": "Go" | ||
}, | ||
"ranges": [ | ||
{ | ||
"type": "SEMVER", | ||
"events": [ | ||
{ | ||
"introduced": "0" | ||
} | ||
] | ||
} | ||
], | ||
"ecosystem_specific": { | ||
"imports": [ | ||
{ | ||
"path": "github.com/binance-chain/tss-lib/common" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"references": [ | ||
{ | ||
"type": "ADVISORY", | ||
"url": "https://medium.com/@iofinnet/security-disclosure-for-ecdsa-and-eddsa-threshold-signature-schemes-4e969af7155b" | ||
} | ||
], | ||
"database_specific": { | ||
"url": "https://pkg.go.dev/vuln/GO-2023-1732" | ||
} | ||
} |
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,22 @@ | ||
id: GO-2023-1732 | ||
modules: | ||
- module: github.com/bnb-chain/tss-lib | ||
versions: | ||
- fixed: 1.3.6-0.20230324145555-bb6fb30bd3eb | ||
vulnerable_at: 1.3.5 | ||
packages: | ||
- package: github.com/bnb-chain/tss-lib/common | ||
- module: github.com/binance-chain/tss-lib | ||
vulnerable_at: 1.3.0 | ||
packages: | ||
- package: github.com/binance-chain/tss-lib/common | ||
summary: |- | ||
Timing attack from non-constant time scalar multiplication in | ||
github.com/bnb-chain/tss-lib | ||
description: |- | ||
Timing attack from non-constant time scalar multiplication in | ||
github.com/bnb-chain/tss-lib. | ||
cves: | ||
- CVE-2023-26556 | ||
references: | ||
- advisory: https://medium.com/@iofinnet/security-disclosure-for-ecdsa-and-eddsa-threshold-signature-schemes-4e969af7155b |