VRT 391,810 CVEs tracked · 15,472 in RASP scope · data as of 55 minutes ago

CVE-2017-10115

7.5 High Protected by RASP

Description

Vulnerability in the Java SE, Java SE Embedded, JRockit component of Oracle Java SE (subcomponent: JCE). Supported versions that are affected are Java SE: 6u151, 7u141 and 8u131; Java SE Embedded: 8u131; JRockit: R28.3.14. Easily exploitable vulnerability allows unauthenticated attacker with network access via multiple protocols to compromise Java SE, Java SE Embedded, JRockit. Successful attacks of this vulnerability can result in unauthorized access to critical data or complete access to all Java SE, Java SE Embedded, JRockit accessible data. Note: This vulnerability can be exploited through sandboxed Java Web Start applications and sandboxed Java applets. It can also be exploited by supplying data to APIs in the specified Component without using sandboxed Java Web Start applications or sandboxed Java applets, such as through a web service. CVSS 3.0 Base Score 7.5 (Confidentiality impacts). CVSS Vector: (CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N).

Exploitation Status

No public exploit

Nothing published shows this CVE being exploited, which is not the same as ruling it out. nothing published in 9 years.

CVSS E:U

  • CISA KEV not listed
  • CISA Vulnrichment exploitation: none
  • Indexed PoC none indexed
  • EPSS 2.7% chance in 30 days

Waratek Defense Posture

Protected by RASP

A Waratek agent blocks this today.

Applicable rule: CVE has an ARMR patch rule that provides mitigation

  • Protection full a patch rule written for this CVE
  • Action available patch rule
  • Review human armr-file
  • Record active
Decided by armr-patch-file : An ARMR patch file on disk for this CVE
Finding CVE has an ARMR patch rule that provides mitigation

ARMR rule files

1 file

Shipped files covering this CVE. A CVE genuinely takes more than one: separate Maven artifacts hooking different parser classes, the same patch built for two ARMR versions, or a fix at both the framework and the container.

vcpu/2017/Q3-July/CVE-2017-10115/patch/2.6/CVE-2017-10115.armr patch rule added 2020-06-26 updated 2026-03-04
app("2017 JULY CPU"):
    requires(version: "ARMR/2.6")

    /***************************************************************************
        CVE-2017-10115 (2017 JULY CPU)

        CVSS 3.0 Summary:
            Base Score              | 7.5 HIGH
            Attack Vector           | Network
            Attack Complexity       | Low
            Privileges Required     | None
            User Interaction        | Required
            Scope                   | Unchanged
            Confidentiality Impact  | High
            Integrity Impact        | None
            Availability Impact     | None

        Description:
            A covert timing channel flaw was found in the DSA implementation in
            the JCE component of OpenJDK. A remote attacker able to make a Java
            application generate DSA signatures on demand could possibly use
            this flaw to extract certain information about the used key via a
            timing side channel.

        Resources:
            https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2017-10115
            hg diff -c 5be3d65e776c (jdk6)

        Affected Versions:
            6u151, 7u141, 8u131, JRockit R28.3.14

        Tested Versions:
            6u0 - 6u151
            7u0 - 7u141
            8u0 - 8u131

        Protection Provided:
            Functional

        Patch Version:
            1.0
    ***************************************************************************/

    patch("CVE-2017-10115 :01"):
        function("sun/security/provider/DSA.generateK(Ljava/math/BigInteger;)Ljava/math/BigInteger;",
            checksums: ["106afc82b9",   // 6u0 - 6u113, 7u0   - 7u99
                        "2fcbfba98e",   // 6u115 - 6u121, 7u101 - 7u111,
                        "8a35922acc",   // 6u131, 7u121
                        "38b288bb88",   // 6u141 - 6u151
                        "819a07c1c3",   //                  8u0   - 8u31
                        "37a6ff4fda",   //                  8u40  - 8u77
                        "87f7b692e3",   //                  8u91  - 8u112
                        "96e3b0d045"])  // 7u131 - 7u141,   8u121 - 8u131
        entry()

        code(language: java,   import: ["java.security.SecureRandom",
                                        "java.math.BigInteger"]):
            private static final int BLINDING_BITS = 7;
            private static final BigInteger BLINDING_CONSTANT =
                BigInteger.valueOf(1 << BLINDING_BITS);

            private static JavaMethod getSigningRandomMethod;

            public void load() {
                getSigningRandomMethod =
                    JavaMethod.load("sun/security/provider/DSA.getSigningRandom()Ljava/security/SecureRandom;");
            }

            public void patch(JavaFrame frame) {
                Object self = frame.loadThisVariable();
                BigInteger q = (BigInteger) frame.loadObjectParam(1);

                SecureRandom random = (SecureRandom) getSigningRandomMethod.call(self);
                byte[] kValue = new byte[(q.bitLength() + 7)/8 + 8];
                random.nextBytes(kValue);
                BigInteger result = new BigInteger(1, kValue)
                        .mod(q.subtract(BigInteger.ONE))
                        .add(BigInteger.ONE);
                frame.returnObject(result);
            }
        endcode
    endpatch

    patch("CVE-2017-10115 :02"):
        function("sun/security/provider/DSA.generateR(Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;Ljava/math/BigInteger;)Ljava/math/BigInteger;",
            checksums: ["106afc82b9",   // 6u0 - 6u113, 7u0   - 7u99
                        "2fcbfba98e",   // 6u115 - 6u121, 7u101 - 7u111,
                        "8a35922acc",   // 6u131, 7u121
                        "38b288bb88",   // 6u141 - 6u151
                        "819a07c1c3",   //                  8u0   - 8u31
                        "37a6ff4fda",   //                  8u40  - 8u77
                        "87f7b692e3",   //                  8u91  - 8u112
                        "96e3b0d045"])  // 7u131 - 7u141,   8u121 - 8u131
        entry()

        code(language: java,   import: ["java.security.SecureRandom",
                                        "java.math.BigInteger"]):
            private static final int BLINDING_BITS = 7;
            private static final BigInteger BLINDING_CONSTANT =
                BigInteger.valueOf(1 << BLINDING_BITS);

            private static JavaMethod getSigningRandomMethod;

            public void load() {
                getSigningRandomMethod =
                    JavaMethod.load("sun/security/provider/DSA.getSigningRandom()Ljava/security/SecureRandom;");
            }

            public void patch(JavaFrame frame) {
                Object self = frame.loadThisVariable();
                BigInteger p = (BigInteger) frame.loadObjectParam(1);
                BigInteger q = (BigInteger) frame.loadObjectParam(2);
                BigInteger g = (BigInteger) frame.loadObjectParam(3);
                BigInteger k = (BigInteger) frame.loadObjectParam(4);

                SecureRandom random = (SecureRandom) getSigningRandomMethod.call(self);
                BigInteger blindingValue = new BigInteger(BLINDING_BITS, random);
                blindingValue = blindingValue.add(BLINDING_CONSTANT);
                k = k.add(q.multiply(blindingValue));
                BigInteger temp = g.modPow(k, p);
                frame.returnObject(temp.mod(q));
            }
        endcode
    endpatch

endapp

CVSS

7.5 HIGH v3.1 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N 2 metrics

VRT selects the newest version's highest entry and publishes it as cvssScore, newest rather than largest because scores are not comparable across versions, and highest rather than first because the first entry is frequently a CNA placeholder scoring 0.0 over NVD's own analysis.

VersionScoreBandVectorAssignerType
CVSS 3.1 7.5 HIGH CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N NVD Primary published
CVSS 2.0 5.0 no band published AV:N/AC:L/Au:N/C:P/I:N/A:N NVD Primary

Affected Software & Releases

🏛️ Oracle CPU Advisories & Products

AdvisoryTypeQuarterProducts Oracle named in risk matrix
Oracle Critical Patch Update July 2017 CPU 2017-Q3 Oracle Java SE / JCE (Java SE: 6u151, 7u141, 8u131; Java SE Embedded: 8u131; JRockit: R28.3.14)

Indexed Oracle Components & Versions

FamilyComponentOracle's version cell (verbatim)Indexed as
Oracle Java SE JCE Java SE: 6u151, 7u141, 8u131; Java SE Embedded: 8u131; JRockit: R28.3.14 6.0.151.0 · 7.0.141.0 · 8.0.131.0

🖥️ Product CPEs & Version Ranges

28 product(s) over 50 version claims (uncapped)
SourceVendorProductSchemeAffected Versions
nvd debian debian linux generic 8.0 · 9.0
nvd netapp active iq unified manager generic ≥ 7.3 · ≥ 9.5
nvd netapp cloud backup generic any version
nvd netapp e-series santricity os controller generic ≥ 11.0 and ≤ 11.70.1
nvd netapp e-series santricity storage manager generic any version
nvd netapp element software generic any version
nvd netapp oncommand balance generic any version
nvd netapp oncommand insight generic any version
nvd netapp oncommand performance manager generic any version
nvd netapp oncommand shift generic any version
nvd netapp oncommand unified manager generic any version · ≤ 7.1
nvd netapp plug-in for symantec netbackup generic any version
nvd netapp snapmanager generic any version
nvd netapp steelstore cloud integrated storage generic any version
nvd netapp storage replication adapter for clustered data ontap generic ≥ 7.2 · 9.6
nvd netapp vasa provider for clustered data ontap generic 6.0 · ≥ 7.2
nvd netapp virtual storage console generic 6.0 · ≥ 7.2
nvd oracle jdk javase 1.6.0:update151 · 1.7.0:update141 · 1.8.0:update131
nvd oracle jre javase 1.6.0:update151 · 1.7.0:update141 · 1.8.0:update131
nvd oracle jrockit generic r28.3.14
nvd phoenixcontact fl mguard dm generic ≤ 1.8.0
nvd redhat enterprise linux desktop generic 6.0 · 7.0
nvd redhat enterprise linux eus generic 7.3 · 7.4 · 7.5 · 7.6 · 7.7
nvd redhat enterprise linux server generic 6.0 · 7.0
nvd redhat enterprise linux server aus generic 7.3 · 7.4 · 7.6 · 7.7
nvd redhat enterprise linux server tus generic 7.3 · 7.6 · 7.7
nvd redhat enterprise linux workstation generic 6.0 · 7.0
nvd redhat satellite generic 5.8

References

URLTags
https://access.redhat.com/errata/RHSA-2017:1789 ADVISORY, RHSA-2017:1789
https://access.redhat.com/security/cve/CVE-2017-10115 REPORT, RHSA-2017:1789
https://access.redhat.com/errata/RHSA-2017:1790 ADVISORY, RHSA-2017:1790
https://access.redhat.com/errata/RHSA-2017:2424 ADVISORY, RHSA-2017:2424
https://access.redhat.com/errata/RHSA-2017:2469 ADVISORY, RHSA-2017:2469
https://access.redhat.com/errata/RHSA-2017:3453 ADVISORY, RHSA-2017:3453
http://www.debian.org/security/2017/dsa-3919 Third Party Advisory
http://www.debian.org/security/2017/dsa-3954 Third Party Advisory
http://www.oracle.com/technetwork/security-advisory/cpujul2017-3236622.html Patch, Vendor Advisory
http://www.securityfocus.com/bid/99774 Broken Link

Timeline

Published 2017-08-08 Last modified 2026-06-17
Published2017-08-08By the CVE Program.
ARMR remediation created2020-06-26Earliest commit adding this CVE's ARMR patch or security rule.
ARMR remediation last updated2026-03-04Most recent commit touching this CVE's ARMR patch or security rule.
Last VRT activity2026-03-04Most recent commit touching this CVE's classification, patch or rule file.
NVD record modified2026-06-17NVD's own last-modified date for this record.