## Summary
Cross reference list for security vulnerabilites fixed in IBM WebSphere Application Server 8.0.0.10, IBM WebSphere Application Server Hypervisor 8.0.0.10 and IBM HTTP Server 8.0.0.10
## Vulnerability Details
**CVE ID: **[**_CVE-2014-3021_**]() **(APAR PI08268)** **
DESCRIPTION: **IBM WebSphere Application Server could allow a remote attacker to obtain sensitive information caused by a vulnerability in HTTP headers used by Web Applications. An attacker could exploit this vulnerability using a specially crafted HTTP method to access cookie and authentication data, which could be used to launch further attacks on the system.**
CVSS:** _
CVSS Base Score: 5.0
CVSS Temporal Score: See _[_https://exchange.xforce.ibmcloud.com/vulnerabilities/93059_]() _for the current score
CVSS Environmental Score*: Undefined
CVSS String: (AV:N/AC:L/Au:N/C:P/I:N/A:N)_ **
AFFECTED VERSIONS**: The following IBM WebSphere Application Server Versions are affected:
* Version 8.5 Full Profile and Liberty Profile
* Version 8
* Version 7
**
Remediation/Fixes: **The recommended solution is to apply the Fix Pack or PTF for each named product as soon as practical. **_
Fix:_**
Apply an Interim Fix, [_Fix Pack or PTF_]() containing this APAR PI08268, as noted below: **
For IBM WebSphere Application Server
For V8.5.0.0 through 8.5.5.3:**
* Apply Fix Pack 4 (8.5.5.4), or later.
**
For V8.0.0.0 through 8.0.0.9:**
* Apply Fix Pack 10 (8.0.0.10), or later.
**
For V7.0.0.0 through 7.0.0.33:**
* Apply Fix Pack 35 (7.0.0.35), or later.
**_
Workaround(s):_** None known **_
Mitigation(s):_** None known
**CVE ID: **[**_CVE-2014-3070_**]() **(APAR PI16765)
DESCRIPTION: **WebSphere Application Server could allow a remote attacker to bypass security restrictions caused by improper account creation with the Virtual Member Manager SPI Admin Task addFileRegistryAccount.
**CVSS:** _
CVSS Base Score: 5.0
CVSS Temporal Score: See _[_https://exchange.xforce.ibmcloud.com/vulnerabilities/93777_]() _for the current score
CVSS Environmental Score*: Undefined
CVSS String: (AV:N/AC:L/Au:N/C:N/I:P/A:N)_
**Affected Versions/Remediation/Fixes/Workaround/Mitigation**
Please refer to [_WebSphere Application Server Security bulletin for CVE-2014-3070_]() for remediation information.
**CVE ID: **[**_CVE-2014-3083_**]() **(APAR PI17768 and PI30579)****
DESCRIPTION: **WebSphere Application Server could allow a remote attacker to obtain sensitive information, caused by the failure to restrict access to resources located within the web application. An attacker could exploit this vulnerability to obtain configuration data and other sensitive information. ** PI17768 **is used to deliver the code for the fix to the Portlet container and **PI30579 **is used to deliver the code for the fix to the Faces Portlet. **
CVSS:** _
CVSS Base Score: 5.0
CVSS Temporal Score: See _[_https://exchange.xforce.ibmcloud.com/vulnerabilities/93954_]() _for the current score
CVSS Environmental Score*: Undefined
CVSS String: (AV:N/AC:L/Au:N/C:P/I:N/A:N)_ **
AFFECTED VERSIONS**: The following IBM WebSphere Application Server Versions are affected:
* Version 8.5
* Version 8.5 Liberty Profile if you have installed the Portlet Container feature from the WASdev Liberty Repository.
* Version 8
* Version 7
**
Remediation/Fixes: **Remediation is needed for WebSphere Application Server as well as there may be a need for your own portlets to be updated to avoid this issue. The recommended solution is to apply the Fix Pack or PTF for each named product as soon as practical **_
Fix:_**
Apply an [_Interim Fix_](), [_Fix Pack or PTF_]() containing this APAR PI17768 and/or PI30579, as noted below: **
For IBM WebSphere Application Server
For V8.5.0.0 through 8.5.5.2 (Full Profile):**
* Apply Fix Pack 3 (8.5.5.3), or later for fix to Portlet container for PI17768
* Apply Fix Pack 5 (8.5.5.5), or later for fix to Faces Portlet for PI30579
*
— Or —
* Apply Interim Fix for Faces Portlet [PI30579 ]()
* Apply Interim Fix for Portlet Container [_PI17768_]()
**For V8.5.0.0. through 8.5.5.2 (Liberty Profile):** **
If you have the installed the Portlet Container Feature from WASdev Liberty Repository:**
* Remove the Portlet Container feature from your Liberty Profile server by deleting the following files and directories:
`usrextensiondevapispeccom.ibm.websphere.appserver.api.portlet_2.0.0.jar` `
usrextensiondevapispeccom.ibm.ws.javaee.ccpp_1.0.0.jar` `
usrextensiondevapispeccom.ibm.ws.javaee.portlet_2.0.0.jar` `
usrextensionlibcom.ibm.ws.portletcontainer_2.0.0.jar` `
usrextensionlibfeaturescom.ibm.websphere.appserver.portlet-2.0.mf` `
usrextensionlibfeaturesl10ncom.ibm.websphere.appserver.portlet-2.0.properties` `
usrextensionlafilescom.ibm.websphere.appserver.portlet-2.0 directory and all subdirectories`
Then install the most current version of the Portlet Container from the WASdev Liberty Repository.
**
For V8.0.0.0 through 8.0.0.9:**
* Apply Fix Pack 10 (8.0.0.10), or later.
— Or —
* Apply Interim Fix for Faces Portlet [PI30579]()
* Apply Interim Fix for Portlet Container [_PI17768_]()
**
For V7.0.0.0 through 7.0.0.33:**
* Apply Fix Pack 35 (7.0.0.35), or later.
— Or —
* Apply Interim Fix [_PI17768_]()
* PI30579 is not applicable to version 7.0
**
Remediation for portlets: **
All JSR 286 compliant portlets that derive from class javax.portlet.GenericPortlet must override method serveResource.
An overriding serveResource implementation must not call super.serveResource.
If the portlet does not use resource serving, a empty implementation of serveResource should be used.
`
Example: This empty implementation is correct for a portlet that does not use resource serving:` `
@Override` `**
public**` ` ` `**void**` ` serveResource(ResourceRequest request, ResourceResponse response)` `**throws**` ` PortletException, IOException {` `
// Empty implementation on purpose` `
if (logger.isLoggable(Level.WARNING) {` `
// Unexpected call to serveResource, therefore log a warning.` `
logger.log(Level.WARNING, “Unexpected call to serveResource.”);` `
}` `
}` `
Example of a WRONG fix:` `
@Override` `**
public**` ` ` `**void**` ` serveResource(ResourceRequest request, ResourceResponse response)` `**throws**` ` PortletException, IOException {` `
// “**FIXME **“This is wrong: Calling super.serveResource does not fix the security issue !` `**
super**` `.serveResource(request, response);` `
}` **_
Workaround(s):_** None known **_
Mitigation(s):_** None known
**CVE ID: **[**_CVE-2014-0076_**]() **(APAR PI19700)
DESCRIPTION: **The GSKit component in IBM HTTP Server could allow a local attacker to obtain sensitive information, caused by an implementation error in ECDSA (Elliptic curve Digital Signature Algorithm). **
CVSS:** _
CVSS Base Score: 2.1
CVSS Temporal Score: See _[_https://exchange.xforce.ibmcloud.com/vulnerabilities/91990_]() _for the current score
CVSS Environmental Score*: Undefined
CVSS String: (AV:L/AC:L/Au:N/C:P/I:N/A:N)_ **
AFFECTED VERSIONS**: The following IBM WebSphere Application Server Versions are affected:
* Version 8.5
* Version 8
**
Remediation/Fixes: **No action is required unless all of these conditions are met:
* SSL is enabled
* IBM HTTP Server is Version 8 or later
* SSLCipherSpec has enabled ECDHE_ECDSA* ciphers
* Configured certificate uses an ECC key rather than RSA
* Configured certificate was created by a tool other than ikeyman or gskcapicmd
**_
Fix:_**
If all of the above conditions are met, then apply the appropriate [_Fix Pack, PTF_](), or Interim Fix containing APAR PI19700, as noted below. If the SSLFIPSEnable directive is specified, the vulnerability remains after applying the fix. As a remediation, disable SSLFIPSEnable, or change any of the above conditions. **
For affected IBM HTTP Server:
For V8.5.0.0 through 8.5.5.2:**
* Apply Fix Pack 3 (8.5.5.3), or later.
— Or — []()
* Apply Interim Fix [_PI19700_]()
**
For V8.0.0.0 through 8.0.0.9:**
* Apply Fix Pack 10 (8.0.0.10), or later.
— Or —
* Apply Interim Fix [_PI19700_]()
**_
Workaround(s):_** None known **_
Mitigation(s):_** None known
**CVE ID: **[**_CVE-2014-4764_**]() **(APAR PI21189)** **
DESCRIPTION: **WebSphere Application Server on Windows using Load Balancer for IPv4 Dispatcher component may be vulnerable to a denial of service. A remote attacker could exploit this vulnerability to cause the Load Balancer to crash. **
CVSS:** _
CVSS Base Score: 7.1
CVSS Temporal Score: See _[_https://exchange.xforce.ibmcloud.com/vulnerabilities/94723_]() _for the current score
CVSS Environmental Score*: Undefined
CVSS String: (AV:N/AC:M/Au:N/C:N/I:N/A:C)_ **
AFFECTED VERSIONS**: The following IBM WebSphere Application Server Versions are affected:
* Version 8.5
* Version 8
**
Remediation/Fixes: **The recommended solution is to apply the Fix Pack or PTF for each named product as soon as practical **_
Fix:_**
Apply a [_Fix Pack or PTF_]() containing this APAR PI21189, as noted below: **
For IBM WebSphere Application Server
For V8.5.0.0 through 8.5.5.2:**
* Apply Fix Pack 3 (8.5.5.3), or later.
**
For V8.0.0.0 through 8.0.0.9:**
* Apply Fix Pack 10 (8.0.0.10), or later.
**_
Workaround(s):_** None known **_
Mitigation(s):_** None known
**CVE IDs: **[**_CVE-2014-0226_**]() [**_CVE-2014-0231_**]() [**_CVE-2014-0118_**]() [**_CVE-2013-5704_**]() **(APAR PI22070)
Affected Versions/Remediation/Fixes/Workaround/Mitigation**
Please refer to [_IBM HTTP Server Security bulletin for multiple vulnerabilities_]() for remediation information.
**
CVE IDs: **[**_CVE-2014-4770_**]() **and **[**_CVE-2014-4816_**]() **(APAR PI23055)**
**
DESCRIPTION: **IBM WebSphere Application Server Admin Console is vulnerable to cross-site scripting and cross-site request forgery.
**
Affected Versions/Remediation/Fixes/Workaround/Mitigation**
Please refer to [_WebSphere Application Server Security bulletin for CVE-2014-4770 and CVE-2014-4816 _]()for remediation information.
**CVE ID: **[**_CVE-2014-6164_**]() **(APAR PI23430)**
Although this APAR is listed on the recommended fix list for this fix pack – please note this is not an issue with 8.0.0.10 since this feature was not added until this fix pack so no prior 8.0 fix packs are vulnerable.
**
CVE ID: **[**_CVE-2014-6167_**]() **(APAR PI23819)** **
DESCRIPTION: **IBM WebSphere Application Server may be vulnerable to cross-site scripting, caused by improper validation of session input using URL rewriting. A remote attacker could exploit this vulnerability in a specially-crafted URL to execute script in a victim’s Web browser within the security context of the hosting Web site, once the URL is clicked. **
CVSS:** _
CVSS Base Score: 4.3
CVSS Temporal Score: See _[_https://exchange.xforce.ibmcloud.com/vulnerabilities/97748_]() _for the current score
CVSS Environmental Score*: Undefined
CVSS String: (AV:N/AC:M/Au:N/C:N/I:P/A:N)_ **
AFFECTED VERSIONS**: The following IBM WebSphere Application Server Versions are affected:
* Version 8.5 Full Profile and Liberty Profile
* Version 8
* Version 7
**
Remediation/Fixes: **The recommended solution is to apply the Fix Pack or PTF for each named product as soon as practical. **_
Fix:_**
Apply an Interim Fix, [_Fix Pack or PTF_]() containing this APAR PI23819, as noted below: **
For IBM WebSphere Application Server
For V8.5.0.0 through 8.5.5.3:**
* Apply Fix Pack 4 (8.5.5.4), or later.
**
For V8.0.0.0 through 8.0.0.9:**
* Apply Fix Pack 10 (8.0.0.10), or later.
**
For V7.0.0.0 through 7.0.0.35:**
* Apply Fix Pack 37 (7.0.0.37), or later.
**_Workaround(s):_** None known **_
Mitigation(s):_** None known
**
CVE ID: **[**_CVE-2014-6166_**]() **(APAR PI25310 and PI28632)** **
DESCRIPTION: **WebSphere Application Server Communications Enabled Applications (CEA) Service could allow a remote attacker to obtain sensitive information, caused by an XML External Entity Injection (XXE) error when processing XML data. By sending specially-crafted XML data, an attacker could exploit this vulnerability to obtain sensitive information. This only occurs if CEA is enabled. By default this is disabled. **
CVSS:** _
CVSS Base Score: 5.0
CVSS Temporal Score: See _[_https://exchange.xforce.ibmcloud.com/vulnerabilities/97746_]() _for the current score
CVSS Environmental Score*: Undefined
CVSS String: (AV:N/AC:L/Au:N/C:P/I:N/A:N)_ **
AFFECTED VERSIONS**: The following IBM WebSphere Application Server Versions are affected:
* Version 8.5 Full Profile
* Version 8
* Feature Pack for Communications Enabled Applications
**
Remediation/Fixes: **The recommended solution is to apply the Fix Pack or PTF for each named product as soon as practical. **_
Fix:_**
Apply an Interim Fix, [_Fix Pack or PTF_]() containing this APAR PI25310, as noted below: **
For IBM WebSphere Application Server
For V8.5.0.0 through 8.5.5.3:**
* Apply Fix Pack 4 (8.5.5.4), or later.
— OR
* Apply Interim Fix [_PI25310_]()
**
For V8.0.0.0 through 8.0.0.9:**
* Apply Fix Pack 10 (8.0.0.10), or later.
— OR
* Apply Interim Fix [_PI25310_]()
**
For IBM WebSphere Application Server Feature Pack for Communications Enabled Applications (CEA)
For V1.0.0.0 through 1.0.0.13:**
* Apply Interim Fix** **[_PI28632_]()
— OR
* Apply Fix Pack 15 (1.0.0.15), or later.
**_Workaround(s):_** None known **_
Mitigation(s):_** None known
**
CVE ID: **[**_CVE-2014-6174_**]() **(APAR PI27152)** **
DESCRIPTION: **IBM WebSphere Application Server Administrative Console could allow a remote attacker to hijack the clicking action of the victim. By persuading a victim to visit a malicious Web site, a remote attacker could send a specially-crafted HTTP request to hijack the victim’s click actions or launch other client-side browser attacks. **
CVSS:** _
CVSS Base Score: 4.3
CVSS Temporal Score: See _[_https://exchange.xforce.ibmcloud.com/vulnerabilities/98486_]() _for the current score
CVSS Environmental Score*: Undefined
CVSS String: (AV:N/AC:M/Au:N/C:N/I:P/A:N)_ **
AFFECTED VERSIONS**: The following IBM WebSphere Application Server Versions are affected:
* Version 8.5 Full Profile
* Version 8
* Version 7
**
Remediation/Fixes: **The recommended solution is to apply the Fix Pack or PTF for each named product as soon as practical. **_
Fix:_**
Apply an [Interim Fix](), [_Fix Pack or PTF_]() containing this APAR PI27152, as noted below: **
For IBM WebSphere Application Server
For V8.5.0.0 through 8.5.5.3:**
* Apply Interim Fix [PI27152]()
— OR
* Apply Fix Pack 4 (8.5.5.4), or later.
**
For V8.0.0.0 through 8.0.0.9:**
* Apply Interim Fix [PI27152]()[]()
— OR
* Apply Fix Pack 10 (8.0.0.10), or later.
**
For V7.0.0.0 through 7.0.0.35:**
* Apply Interim Fix [PI27152]()
— OR
* Apply Fix Pack 37 (7.0.0.37), or later.
**_
Workaround(s):_** None known **_
Mitigation(s):_** None known
**CVE IDs: **[**_CVE-2014-3566_**]()[]() **(APAR PI27904)**
**
DESCRIPTION:** SSLv3 contains a vulnerability that has been referred to as the Padding Oracle On Downgraded Legacy Encryption (POODLE) attack. SSLv3 is enabled by default in the Apache based IBM HTTP Server. ** **
**
Affected Versions/Remediation/Fixes/Workaround/Mitigation**
Please refer to [_Vulnerability in SSLv3 affects IBM HTTP Server_]() for remediation information.
If you are using an earlier unsupported release, IBM strongly recommends that you upgrade.
## Get Notified about Future Security Bulletins
Subscribe to [My Notifications]() to be notified of important product support alerts like this.
## Important Note
IBM strongly suggests that all System z customers be subscribed to the System z Security Portal to receive the latest critical System z security and integrity service. If you are not subscribed, see the instructions on the [System z Security web site](). Security and integrity APARs and associated fixes will be posted to this portal. IBM suggests reviewing the CVSS scores and applying all security or integrity fixes as soon as possible to minimize any potential risk.
### References
[Complete CVSS v2 Guide]( “Link resides outside of ibm.com” )
[On-line Calculator v2]( “Link resides outside of ibm.com” )
Off
## Related Information
[IBM Secure Engineering Web Portal]()
[IBM Product Security Incident Response Blog]()
## Change History
16 February 2015: original document published
6 March 2015: updated ifix links
*The CVSS Environment Score is customer environment specific and will ultimately impact the Overall CVSS Score. Customers can evaluate the impact of this vulnerability in their environments by accessing the links in the Reference section of this Security Bulletin.
## Disclaimer
According to the Forum of Incident Response and Security Teams (FIRST), the Common Vulnerability Scoring System (CVSS) is an “industry open standard designed to convey vulnerability severity and help to determine urgency and priority of response.” IBM PROVIDES THE CVSS SCORES “”AS IS”” WITHOUT WARRANTY OF ANY KIND, INCLUDING THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. CUSTOMERS ARE RESPONSIBLE FOR ASSESSING THE IMPACT OF ANY ACTUAL OR POTENTIAL SECURITY VULNERABILITY. In addition to other efforts to address potential vulnerabilities, IBM periodically updates the record of components contained in our product offerings. As part of that effort, if IBM identifies previously unidentified packages in a product/service inventory, we address relevant vulnerabilities regardless of CVE date. Inclusion of an older CVEID does not demonstrate that the referenced product has been used by IBM since that date, nor that IBM was aware of a vulnerability as of that date. We are making clients aware of relevant vulnerabilities as we become aware of them. “Affected Products and Versions” referenced in IBM Security Bulletins are intended to be only products and versions that are supported by IBM and have not passed their end-of-support or warranty date. Thus, failure to reference unsupported or extended-support products and versions in this Security Bulletin does not constitute a determination by IBM that they are unaffected by the vulnerability. Reference to one or more unsupported versions in this Security Bulletin shall not create an obligation for IBM to provide fixes for any unsupported or extended-support products or versions.
[{“Product”:{“code”:”SSEQTP”,”label”:”WebSphere Application Server”},”Business Unit”:{“code”:”BU059″,”label”:”IBM Software w/o TPS”},”Component”:”General”,”Platform”:[{“code”:”PF002″,”label”:”AIX”},{“code”:”PF010″,”label”:”HP-UX”},{“code”:”PF012″,”label”:”IBM i”},{“code”:”PF016″,”label”:”Linux”},{“code”:”PF027″,”label”:”Solaris”},{“code”:”PF033″,”label”:”Windows”},{“code”:”PF035″,”label”:”z/OS”}],”Version”:”8.5.5;8.5;8.0;7.0;6.1″,”Edition”:”Base;Developer;Enterprise;Liberty;Network Deployment”,”Line of Business”:{“code”:”LOB45″,”label”:”Automation”}},{“Product”:{“code”:”SSEQTJ”,”label”:”IBM HTTP Server”},”Business Unit”:{“code”:”BU059″,”label”:”IBM Software w/o TPS”},”Component”:” “,”Platform”:[{“code”:””,”label”:””}],”Version”:””,”Edition”:””,”Line of Business”:{“code”:”LOB45″,”label”:”Automation”}},{“Product”:{“code”:”SSCKBL”,”label”:”WebSphere Application Server Hypervisor Edition”},”Business Unit”:{“code”:”BU053″,”label”:”Cloud u0026 Data Platform”},”Component”:” “,”Platform”:[{“code”:””,”label”:””}],”Version”:””,”Edition”:””,”Line of Business”:{“code”:”LOB36″,”label”:”IBM Automation”}}]Read More