On July 29, 2026, the U.S. Cybersecurity and Infrastructure Security Agency (CISA) added vulnerability CVE-2026-20316 to the Known Exploited Vulnerabilities (KEV) catalog after confirming its active exploitation as a zero-day. The vulnerability affects Cisco Secure Firewall Management Center (FMC) Software, Cisco’s centralized firewall management platform widely used in enterprise and government networks. Despite a moderate CVSS base score of 5.3, the real danger is significantly higher: Cisco has assigned the vulnerability a High impact rating because it can be chained with other FMC vulnerabilities to achieve privilege escalation. U.S. federal agencies are required to remediate the issue by August 1, 2026.
Technical details of the vulnerability
The root cause of CVE-2026-20316 is the presence of hard-coded (static) credentials for a low-privileged account in Cisco Secure FMC software. As Cisco stated in its security advisory, an unauthenticated remote attacker can use these static credentials to log in and gain access to sensitive data under the identity of a low-privileged user.
Hard-coded credentials in network equipment are a class of vulnerabilities that repeatedly lead to compromise. Unlike complex flaws in authorization logic, exploitation here is trivial: it is enough to know the username and password embedded in the code. Cisco notes that the attack surface is reduced if the FMC management interface is not reachable from the public internet, but in practice such interfaces often end up exposed.
Discovery of the vulnerability is credited to researcher Jimi Sebree from Horizon3.ai. Cisco confirmed that exploitation began earlier in July 2026 but did not disclose the attack timeline, the threat actors involved, or specific exploitation methods.
Attack chain: connection to CVE-2026-20079
In parallel with publishing the advisory for CVE-2026-20316, Cisco updated its guidance for CVE-2026-20079, a critical authentication bypass vulnerability in the same product with a maximum CVSS 10.0 score. The update added an extra bug ID (CSCwt95974), along with the same indicators of compromise and fixes.
CVE-2026-20079 allows execution of arbitrary executable scripts with root access. Crucially, both vulnerabilities share the same indicator of compromise—the file /var/tmp/license.tmp. This points to a likely attack-chain scenario: CVE-2026-20316 provides initial access via static credentials, while CVE-2026-20079 enables privilege escalation to root and code execution. Cisco, however, notes that active exploitation of CVE-2026-20079 has not yet been observed.
It is precisely the possibility of such chaining that explains why Cisco raised the impact rating of CVE-2026-20316 from Medium to High, despite its CVSS base score of 5.3. The CVSS score reflects the isolated impact of a single vulnerability, whereas the real threat is determined by context—and in this case, the context is critical.
Impact assessment
Cisco Secure FMC is a central management component for firewalls in large infrastructures. Compromise of this platform potentially allows an attacker to:
- Gain access to firewall configurations and security policies
- Extract information about the topology of the protected network
- When chained with CVE-2026-20079, execute arbitrary code with root privileges on the management platform
- Potentially modify traffic filtering rules on managed firewalls
The highest risk is for organizations whose FMC management interfaces are accessible from the internet, as well as those that fail to apply patches promptly. Given the confirmed zero-day exploitation, any delay in patching creates a direct threat.
Patches and indicators of compromise
Cisco has released fixes for all supported Cisco Secure FMC Software branches:
- 7.0 — Cisco_Firepower_Mgmt_Center_Hotfix_GB-7.0.9.1-3.sh.REL.tar
- 7.2 — Cisco_Secure_FW_Mgmt_Center_Hotfix_HL-7.2.11.1-4.sh.REL.tar
- 7.4 — Cisco_Secure_FW_Mgmt_Center_Hotfix_HG-7.4.7.1-3.sh.REL.tar
- 7.6 — Cisco_Secure_FW_Mgmt_Center_Hotfix_CY-7.6.5.1-2.sh.REL.tar
- 7.7 — Cisco_Secure_FW_Mgmt_Center_Hotfix_AM-7.7.12.1-2.sh.REL.tar
- 10.0 — Cisco_Secure_FW_Mgmt_Center_Hotfix_P-10.0.1.1-2.sh.REL.tar
Checking for compromise
Cisco recommends running the following command in expert mode on the FMC device:
cat /var/log/messages | grep licenseIf the output contains the path /var/tmp/license.tmp, the device may have been compromised. A characteristic log entry looks as follows:
Jul 23 16:16:33 firepower sudo: www : PWD=/ ; USER=root ; COMMAND=/usr/local/sf/bin/package_info.pl /var/tmp/license.tmp --lsmPay attention to the execution of package_info.pl as root with the argument /var/tmp/license.tmp—this is the key pattern indicating possible exploitation.
Response recommendations
- Immediately check the logs of all Cisco Secure FMC instances for the
/var/tmp/license.tmpindicator - Install the relevant hotfix for your FMC version. If signs of compromise are detected, perform a full incident investigation before applying the patch
- Restrict access to the FMC management interface—it should not be reachable from the public internet. Use dedicated management networks or VPN
- Review the configurations of managed firewalls for unauthorized changes, especially if indicators of compromise are found
- Consider the vulnerability chain: even though CVE-2026-20079 is not yet being actively exploited, fixes for both vulnerabilities are included in the same hotfix packages—installing a single update closes both vectors
The remediation deadline for U.S. federal agencies is August 1, 2026, but given the confirmed active exploitation and the trivial use of static credentials, any organization running Cisco Secure FMC should treat installation of the fixes as a top-priority task. The first step should be to check the logs for /var/tmp/license.tmp—this takes minutes and will immediately show whether incident response is required or a scheduled update is sufficient.