Mitigation Instructions for CVE-2016-4437
Mitigating CVE-2016-4437: Remote Code Execution Vulnerability in Apache ActiveMQ
1 min read
CyRisk Vulnerability Management Team : Jun 18, 2024 5:55:55 PM
SUBJECT: SSL Version 2 and 3 Protocol Detection
TECH STACK: Any system using SSL/TLS for secure communications
DATE(S) ISSUED: 10/12/2005, Updated: 04/04/2022
CRITICALITY: CRITICAL
OVERVIEW:
The remote service encrypts traffic using SSL 2.0 and/or SSL 3.0, which are protocols with known weaknesses. These versions of SSL are affected by several cryptographic flaws, including an insecure padding scheme with CBC ciphers and insecure session renegotiation and resumption schemes. An attacker can exploit these flaws to conduct man-in-the-middle attacks or to decrypt communications between the affected service and clients.
Although SSL/TLS has a secure means for choosing the highest supported version of the protocol, many web browsers implement this in an unsafe way that allows an attacker to downgrade a connection (such as in POODLE). Therefore, it is recommended that these protocols be disabled entirely.
NIST has determined that SSL 3.0 is no longer acceptable for secure communications. As of the date of enforcement found in PCI DSS v3.1, any version of SSL will not meet the PCI SSC's definition of 'strong cryptography'.
SOLUTION:
Disable SSL 2.0 and SSL 3.0:
Example for Apache server configuration (httpd.conf
or ssl.conf
):
SSLProtocol -all +TLSv1.2 +TLSv1.3
Use Approved Cipher Suites:
Example for Apache:
SSLCipherSuite HIGH:!aNULL:!MD5
Verify Configuration:
Update Software:
REFERENCES:
Mitigating CVE-2016-4437: Remote Code Execution Vulnerability in Apache ActiveMQ
Mitigating CVE-2013-1896: Privilege Escalation Vulnerability in Puppet
Subject: Mitigating CVE-2014-6271: Shellshock Vulnerability in Bash