How to Fix CVE-2014-6278: Remote Code Execution in GNU Bash
By Sai Kiran Pandrala
| Severity | CVSS 8.8 - High |
|---|---|
| Actively exploited? | Yes, listed in CISA KEV (added 2025-10-02) |
| Affected | GNU Bash (see advisory for affected versions) |
| Fixed in | See vendor advisory |
| Type (CWE) | Not verified - see official advisory |
Patch immediately. CISA added CVE-2014-6278 to the Known Exploited Vulnerabilities catalog on 2025-10-02. Federal civilian agencies must remediate by 2025-10-23. Treat every internet-reachable instance as a priority patch.
What is CVE-2014-6278?
CVE-2014-6278 is a Remote Code Execution flaw in GNU Bash. It carries a CVSS base score of 8.8 (high). CISA confirmed real-world exploitation by adding it to the Known Exploited Vulnerabilities catalog on 2025-10-02.
From the source record: GNU Bash through 4.3 bash43-026 does not properly parse function definitions in the values of environment variables, which allows remote attackers to execute arbitrary commands via a crafted environment, as demonstrated by vectors involving the ForceCommand feature in OpenSSH sshd, the mod_cgi and mod_cgid modules in the Apache HTTP Server, scripts executed by unspecified DHCP clients, and other situations in which setting the environment occurs across a privilege boundary from Bash execution. NOTE: this vulnerability exists because of an incomplete fix for CVE-2014-6271, CVE-2014-7169, and C...
Why it matters in practice: KEV-listed CVEs draw continuous internet-wide scanning. Any unpatched, internet-reachable installation is on borrowed time. The blast radius depends on how the affected service is exposed. An internet-facing instance with no compensating controls is the highest-risk configuration.
Am I affected?
You are affected if your installation of GNU Bash matches a version listed in the Affected row above.
Check the installed version of GNU Bash against the Affected row above. If the version sits at or below the affected range and the vendor patch has not been applied, you are vulnerable.
How to fix CVE-2014-6278
Apply the vendor patch. Target the patched build listed on the vendor advisory. The runnable command set below covers the most common deployment patterns for GNU Bash.
Generic upgrade path
# Debian / Ubuntu
sudo apt-get update && sudo apt-get install --only-upgrade gnu
# RHEL / Rocky / Alma
sudo dnf upgrade --security -y
# Windows
# PowerShell:
# winget upgrade --all --silent --accept-package-agreements --accept-source-agreements
# macOS
sudo softwareupdate -i -a -R
After applying the patch
- Restart the service or device so the patched binary loads.
- Confirm the running version matches the Fixed in row using the verification command below.
- Rotate credentials and API keys that the affected service could access if the asset was exposed during the disclosure window.
If you can't patch immediately
Until the patch lands, narrow the attack surface with these runnable controls.
Reduce the attack surface
Restrict network reach to the affected service to the smallest set of hosts that must access it. On Linux:
# Vendor advisory: http://ftp.gnu.org/gnu/bash/bash-4.3-patches/bash43-027
sudo iptables -A INPUT -p tcp --dport <service-port> -s 10.10.10.0/24 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport <service-port> -j DROP
On Windows:
# Vendor advisory: http://ftp.gnu.org/gnu/bash/bash-4.3-patches/bash43-027
New-NetFirewallRule -DisplayName "Block CVE-2014-6278 inbound" -Direction Inbound -Action Block -Protocol TCP -LocalPort <service-port>
Mitigations are temporary. Apply the vendor patch as soon as a maintenance window opens.
How to verify the fix worked
Confirm the patched build is the one actually running.
Run the product's --version or about command and compare against the Fixed in row (See vendor advisory). Re-run an authenticated vulnerability scan and confirm the scanner no longer flags CVE-2014-6278.
Also worth doing: pull recent log windows for any indicators of compromise listed in the vendor advisory, and re-run an authenticated vulnerability scan with up-to-date signatures.
Frequently asked questions
Related fixes
Other vulnerabilities in the same area that are worth patching alongside this one:
- How to Fix CVE-2014-6271: OS command injection in Bash — OS command injection in Bash
- How to Fix CVE-2014-7169: OS command injection in Bash — OS command injection in Bash
- How to Fix CVE-2014-100005: Cross-Site Request Forgery (CSRF) in Dir-600 Firmware , Cross-Site Request Forgery (CSRF) in Dir-600 Firmware
- How to Fix CVE-2014-1812: n/a in n/a , n/a in n/a
- How to Fix CVE-2014-3120: Improper Access Control in Elastic Elasticsearch , Improper Access Control in Elastic Elasticsearch
Is CVE-2014-6278 being exploited in the wild?
Yes. CISA added CVE-2014-6278 to the Known Exploited Vulnerabilities catalog on 2025-10-02. KEV listing means at least one confirmed real-world exploitation report exists.
Do I have to take downtime to patch?
For most GNU Bash deployments, the patched build needs a service restart or device reboot. HA pairs and clusters can roll the upgrade by patching the standby first, failing over, then patching the former primary.
Will a WAF or IDS rule alone close CVE-2014-6278?
No. Network filters cut down opportunistic scans but they do not remove the flaw. The vendor patch is the only durable fix.
How quickly should I act on CVE-2014-6278?
Within the standard patch cycle if the asset is internal-only. Inside one to two weeks for any internet-facing instance, sooner if compensating controls are not in place.
References
- Official vendor advisory: This vulnerability could affect an open-source component, third-party library, protocol, or proprietary implementation that could be used by different products. For more information, please see: http://ftp.gnu.org/gnu/bash/bash-4.3-patches/bash43-027
- NVD entry: https://nvd.nist.gov/vuln/detail/CVE-2014-6278
- CISA KEV catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- CISA KEV entry: "GNU Bash OS Command Injection Vulnerability" - added 2025-10-02, due 2025-10-23
- Additional reference: http://jvn.jp/en/jp/JVN55667175/index.html
- Additional reference: http://jvndb.jvn.jp/jvndb/JVNDB-2014-000126
- Additional reference: http://lcamtuf.blogspot.com/2014/09/bash-bug-apply-unofficial-patch-now.html
- Additional reference: http://lcamtuf.blogspot.com/2014/10/bash-bug-how-we-finally-cracked.html
*Assembled from the official vendor advisory, the NVD record, and the CISA KEV listing on 2026-05-25. Always confirm against the vendor advisory before applying changes in production.*