Closed
Bug 1387108
Opened 8 years ago
Closed 5 years ago
8175110, CVE-2017-10118: Higher quality ECDSA operations
Categories
(NSS :: Libraries, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: gnu_andrew, Unassigned)
References
Details
(Keywords: csectype-other, sec-moderate)
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:54.0) Gecko/20100101 Firefox/54.0
Build ID: 20170705063546
Steps to reproduce:
OpenJDK and NSS share a common source for elliptic curve cryptography code in the form of the SunEC library.
The following security fix for the OpenJDK copy of the code was released on the 18th of July, 2017:
http://hg.openjdk.java.net/jdk8u/jdk8u/jdk/rev/996632997de8
and should also be considered for NSS. It adds a timing mitigation to ec_GFp_pt_mul_jm_wNAF.
Comment 1•8 years ago
|
||
CVE-2017-10118 is still "reserved". Do you know who obtained it? is there a link to an advisory for this change?
A fix for the NSS implementation would need a separate CVE because it's a different codebase/language, despite common ancestry.
Flags: needinfo?(gnu_andrew)
Comment 2•8 years ago
|
||
Skimming the patch I guess this is to prevent a timing attack? "higher quality" is a really vague description.
Flags: needinfo?(franziskuskiefer)
Comment 3•8 years ago
|
||
Yep, looks like they try to prevent some timing attacks in ec_GFp_pt_mul_jm_wNAF. Not super successful though. wNAF is leaking timing information all over the place. (I'd need to spend a little more time looking at the exact impact of the countermeasure.) The only fix that makes sense to me is not to use wNAF. Luckily the curve that's most used (P256) doesn't use this function.
Flags: needinfo?(franziskuskiefer)
| Reporter | ||
Comment 4•8 years ago
|
||
It was obtained by Oracle. All the CVEs they obtained for the latest OpenJDK update last month are still reserved, as far as I can see.
Oracle security update: http://www.oracle.com/technetwork/security-advisory/cpujul2017-3236622.html#AppendixJAVA
IcedTea release based on that update: http://bitly.com/it30500
They use deliberately vague descriptions for their security patches, some verging on amusing. I'm afraid the only information we have is the public patch and the link above.
| Reporter | ||
Updated•8 years ago
|
Flags: needinfo?(gnu_andrew)
Updated•8 years ago
|
Keywords: csectype-other,
sec-moderate
Updated•8 years ago
|
Priority: -- → P3
Updated•7 years ago
|
QA Contact: jjones
Updated•6 years ago
|
See Also: → CVE-2020-12400
Updated•6 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Comment 5•5 years ago
|
||
NSS 3.55 replaced both P384 and P521 with verifiable implementations from Fiat-Crypto and ECCKiila. I'm closing this bug as code in question is no longer used in NSS, and to the best of our knowledge no such issues are present in the new code.
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
Updated•5 years ago
|
Group: crypto-core-security → core-security-release
Updated•5 years ago
|
Group: core-security-release
You need to log in
before you can comment on or make changes to this bug.
Description
•