Release date: October 21, 2025
The full version string for this update release is 1.8.0_471-b09 (where "b" means "build"). The version number is 8u471. This JDK conforms to version 8.6 of the Java SE Specification (JSR 337 MR 6 2024-07-02).
For more information, refer to Timezone Data Versions in the JRE Software.
The security baselines for the Java Runtime at the time of the release of JDK 8u471 are specified in the following table:
| Java Family Version | Security Baseline (Full Version String) |
|---|---|
| 8 | 1.8.0_471-b09 |
Oracle recommends that the JDK is updated with each Critical Patch Update. In order to determine if a release is the latest, the Security Baseline page can be used to determine which is the latest version for each release family.
Critical patch updates, which contain security vulnerability fixes, are announced one year in advance on Critical Patch Updates, Security Alerts and Bulletins. It is not recommended that this JDK (version 8u471) be used after the next critical patch update scheduled for January 20, 2026.
Java Management Service, available to all users, can help you find vulnerable Java versions in your systems. Java SE Subscribers and customers running in Oracle Cloud can use Java Management Service to update Java Runtimes and to do further security reviews like identifying potentially vulnerable third party libraries used by your Java programs. Existing Java Management Service user click here to log in to your dashboard. The Java Management Service Documentation provides a list of features available to everyone and those available only to customers. Learn more about using Java Management Service to monitor and secure your Java Installations.
For systems unable to reach the Oracle Servers, a secondary mechanism expires this JRE (version 8u471) on 2026-02-20. After either condition is met (new release becoming available or expiration date reached), the JRE will provide additional warnings and reminders to users to update to the newer version. For more information, see 23.1.2 JRE Expiration Date in the Java Platform, Standard Edition Deployment Guide.
TLS protocol specific usage constraints are now supported by the jdk.tls.disabledAlgorithms property in the java.security configuration file, as follows:
UsageConstraint:
usage UsageType { UsageType }
UsageType:
HandshakeSignature | CertificateSignature
HandshakeSignature restricts the use of an algorithm in TLS handshake signatures. CertificateSignature restricts the use of an algorithm in certificate signatures. An algorithm with this constraint cannot include other usage types defined in the jdk.certpath.disabledAlgorithms property. The usage type follows the keyword and more than one usage type can be specified with a whitespace delimiter.
TLS cipher suites can be disabled with the jdk.tls.disabledAlgorithms security property in the java.security configuration file using one or more * wildcard characters. For example, "TLS_RSA_*" disables all cipher suites that start with "TLS_RSA_". Only cipher suites starting with "TLS_" are allowed to have wildcard characters.
The java.security.debug system property now accepts arguments which add thread ID, thread name, caller information, and timestamp information to debug statements for all components or a specific component.
+timestamp can be appended to debug options to print a timestamp for that debug option. +thread can be appended to debug options to print thread and caller information for that debug option.
Examples: -Djava.security.debug=all+timestamp+thread adds timestamp and thread information to every debug statement generated.
-Djava.security.debug=properties+timestamp adds timestamp information to every debug statement generated for the properties component.
You can also specify -Djava.security.debug=help which will display a complete list of supported components and arguments.
See Printing Thread and Timestamp Information for more information.
The XML Signature implementation has been updated to Santuario 3.0.5. Support for four new SHA-3 based ECDSA SignatureMethod algorithms have been added: SignatureMethod.ECDSA_SHA3_224, SignatureMethod.ECDSA_SHA3_256, SignatureMethod.ECDSA_SHA3_384, and SignatureMethod.ECDSA_SHA3_512.
On Solaris 11.4, Java applications may experience user interface (UI) issues, such as:
Workaround:
To resolve these issues, add the following line to the /usr/bin/gnome-session file:
export GSK_RENDERER=cairo
After making this change, restart gdm and vncserver for the update to take effect.
A permanent fix will be included in Solaris SRU 87.
When IPv6 is enabled, the JDK uses dual stack IPv4/IPv6 sockets by default. Binding, connecting, or sending datagrams uses IPv4-mapped IPv6 addresses in this case.
On some hosts running macOS version 15.6.x and above, and macOS 26, it has been observed that when a datagram socket bound to a IPv4 mapped IPv6 address sends a packet, either using the java.net.DatagramSocket or java.nio.channels.DatagramChannel APIs, then the first packet is lost and never gets delivered. A second invocation of send on the same socket, even to the same destination address, correctly delivers the packet and it is received by the recipient.
A bug has been filed with Apple (feedback issue id FB20302424) seeking their assistance. The issue is currently unresolved.
Until the issue is resolved, there are a couple of workarounds that applications can consider:
java command can be launched with -Djava.net.preferIPv4Stack=true to use IPv4 sockets by default.-Djava.net.preferIPv4Stack=true is not acceptable, a more local workaround can be applied by changing the application code to create a java.nio.channels.DatagramChannel with java.net.StandardProtocolFamily.INET as the protocol family and then bind the channel to a IPv4 address.
The following root certificates, which are deactivated and no longer in use, have been removed from the cacerts keystore:
+ alias name "affirmtrustcommercialca [jdk]"
Distinguished Name: CN=AffirmTrust Commercial, O=AffirmTrust, C=US
+ alias name "affirmtrustnetworkingca [jdk]"
Distinguished Name: CN=AffirmTrust Networking, O=AffirmTrust, C=US
+ alias name "affirmtrustpremiumca [jdk]"
Distinguished Name: CN=AffirmTrust Premium, O=AffirmTrust, C=US
+ alias name "affirmtrustpremiumeccca [jdk]"
Distinguished Name: CN=AffirmTrust Premium ECC, O=AffirmTrust, C=US
Linux RPM JDK installers now use systemd instead of init to manage the automatic jar file execution (jexec) service.
In this release, new system and security properties are introduced to allow more granular control over the set of JNDI object factories allowed to reconstruct Java objects from JNDI/LDAP and JNDI/RMI contexts:
The new jdk.jndi.ldap.object.factoriesFilter property specifies which object factory classes are allowed to instantiate Java objects from object references returned by JNDI/LDAP contexts. By default, only object factories defined with the setting of the property 'jdk.jndi.ldap.object.factoriesFilter=com.sun.jndi.ldap.**;!*' are allowed.
The new jdk.jndi.rmi.object.factoriesFilter property specifies which object factory classes are allowed to instantiate Java objects from object references returned by JNDI/RMI contexts. By default, only object factories defined with the setting of the property jdk.jndi.rmi.object.factoriesFilter=com.sun.jndi.rmi.**;!* are allowed.
These new factory filter properties complement the jdk.jndi.object.factoriesFilter global factories filter property by determining if a specific object factory is permitted to instantiate objects for the LDAP or RMI protocols used in JNDI.
An application depending on custom object factories to recreate Java objects from JNDI/LDAP or JNDI/RMI contexts will need to supply a security or system property with an updated value to allow such third-party object factories to reconstruct LDAP or RMI objects. If usage of a factory is denied, the lookup operation may result in a plain instance of javax.naming.Reference instance returned, which may lead to a ClassCastException being thrown in the application.
The HotSpot runtime code in the JDK has been updated in order for diagnostic commands like jcmd and jstack be able to attach to JVM processes running in a container.
The bug reporting URL that users are directed to as a result of crashes has been updated to use the HTTPS protocol, rather than the HTTP protocol. The old bug reporting URL, http://bugreport.java.com/bugreport/crash.jsp, already redirects to https://, so this change should have no impact on users reporting bugs.
The HotSpot runtime code has been updated to additionally print a container's 'rss' and 'cache'. The additional output can be found in the JVM's response to a "jcmd [PID] VM.info" request and in the hs_err file generated in case of JVM abrupt termination.
This will help monitoring and troubleshooting OutOfMemory situations as OOM killer can terminate a process if its rss + cache usage reaches the max memory limit of the container.
Command line arguments to the Java launcher are no longer converted with Windows' "best-fit" mapping when the arguments include unmappable characters for the ANSI code page. This mapping has been intervening in the Java launcher's argument parsing. Unmappable characters are now replaced with the default replacement character, such as '?' in some cases. For rare cases, where applications need those unmappable characters on the command line, select UTF-8 in Windows Regional Settings.
The XPath processor prevents evaluation of external DTD references in raw XML documents if secure processing is enabled explicitly, such as follows:
XPathFactory xf = XPathFactory.newInstance();
xf.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true);
This process will cause the XPath processor created via the factory to throw XPathExpressionException if used to evaluate a raw XML document that contains external references such as an external DTD.
Mitigation includes using External Access Properties to override that enabled by FSP. For example, the following setting will allow the process to continue when there is a reference to a file-based external DTD in the XML document:
xf.setProperty(ACCESS_EXTERNAL_DTD, "file");
It is recommended that applications use the XPath processor to evaluate DOM rather than raw XML documents.
The logging behavior of the TLS javax.net.debug system property has been improved in this release. The javax.net.debug property is used to generate TLS debug logs from the default JSSE provider. Previously, using the ssl option via -Djavax.net.debug=ssl produced very limited output, which reduced its usefulness for troubleshooting.
With this update, setting -Djavax.net.debug=ssl now enables comprehensive SSL debug logging, except for the data, packet, and plaintext sub-options. Applications using this option will now see significantly more detailed debug information in logs.
This release also contains fixes for security vulnerabilities described in the Oracle Critical Patch Update.
The following table lists the bug fixes included in the JDK 8u471 release:
| # | BugId | Component | Summary |
|---|---|---|---|
| 1 | JDK-8280991 | client-libs/java.awt | [XWayland] No displayChanged event after setDisplayMode call |
| 2 | JDK-8076313 | client-libs/java.awt | GraphicsEnvironment does not detect changes in count of monitors on Linux OS |
| 3 | JDK-8358452 | client-libs/java.awt | JNI exception pending in Java_sun_awt_screencast_ScreencastHelper_remoteDesktopKeyImpl of screencast_pipewire.c:1214 (ID: 51119) |
| 4 | JDK-8360647 | client-libs/java.awt | [XWayland] [OL10] NumPad keys are not triggered |
| 5 | JDK-8351907 | client-libs/java.awt | [XWayland] [OL10] Robot.mousePress() is delivered to wrong place |
| 6 | JDK-8345728 | client-libs/javax.accessibility | [Accessibility,macOS,Screen Magnifier]: JCheckbox unchecked state does not magnify but works for checked state |
| 7 | JDK-8348936 | client-libs/javax.accessibility | [Accessibility,macOS,VoiceOver] VoiceOver doesn't announce untick on toggling the checkbox with "space" key on macOS |
| 8 | JDK-8341311 | client-libs/javax.accessibility | [Accessibility,macOS,VoiceOver] VoiceOver announces incorrect number of items in submenu of JPopupMenu |
| 9 | JDK-8365375 | client-libs/javax.swing | Method SU3.setAcceleratorSelectionForeground assigns to acceleratorForeground |
| 10 | JDK-8348760 | client-libs/javax.swing | RadioButton is not shown if JRadioButtonMenuItem is rendered with ImageIcon in WindowsLookAndFeel |
| 11 | JDK-8343804 | core-libs/java.util:i18n | Show the default time zone with -XshowSettings option |
| 12 | JDK-8368308 | core-libs/java.util:i18n | ISO 4217 Amendment 180 Update - Bulgaria Adopts the Euro in 2026 |
| 13 | JDK-8152589 | core-svc/java.lang.management | java/lang/management/ThreadMXBean/Locks.java fails intermittently, blocked on wrong object |
| 14 | JDK-8179498 | core-svc/tools | attach in linux should be relative to /proc/pid/root and namespace aware |
| 15 | JDK-8361537 | docs/guides | Update the JAXP section of the Guide |
| 16 | JDK-8357105 | hotspot/compiler | C2: compilation fails with "assert(false) failed: empty program detected during loop optimization" |
| 17 | JDK-8164921 | hotspot/jvmti | Memory leaked when instrumentation.retransformClasses() is called repeatedly |
| 18 | JDK-8300658 | hotspot/runtime | memory_and_swap_limit() reporting wrong values on systems with swapaccount=0 |
| 19 | JDK-8360543 | install/uninstall | Modify option for JDK in appwiz.cpl failed with the error |
| 20 | JDK-8350582 | security-libs/javax.net.ssl | Correct the parsing of the ssl value in javax.net.debug |
| 21 | JDK-8355779 | security-libs/javax.net.ssl | When no "signature_algorithms_cert" extension is present we do not apply certificate scope constraints to algorithms in "signature_algorithms" extension |
| 22 | JDK-8350807 | security-libs/javax.net.ssl | Certificates using MD5 algorithm that are disabled by default are incorrectly allowed in TLSv1.3 when re-enabled |