High severity8.2GHSA Advisory· Published Nov 24, 2025· Updated Apr 15, 2026
CVE-2025-13609
CVE-2025-13609
Description
A vulnerability has been identified in keylime where an attacker can exploit this flaw by registering a new agent using a different Trusted Platform Module (TPM) device but claiming an existing agent's unique identifier (UUID). This action overwrites the legitimate agent's identity, enabling the attacker to impersonate the compromised agent and potentially bypass security controls.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
keylimePyPI | < 7.13.0 | 7.13.0 |
Affected products
1Patches
1e1ae8de1f7b1cloud_verifier_tornado: handle exception in notify_error()
1 file changed · +6 −1
keylime/cloud_verifier_tornado.py+6 −1 modified@@ -1868,7 +1868,12 @@ async def notify_error( if "agent" in notifiers: verifier_id = config.get("verifier", "uuid", fallback=cloud_verifier_common.DEFAULT_VERIFIER_ID) with session_context() as session: - agents = session.query(VerfierMain).filter_by(verifier_id=verifier_id).all() + try: + agents = session.query(VerfierMain).filter_by(verifier_id=verifier_id).all() + except Exception as e: + logger.error("An issue happened querying the verifier for the list of agents to notify: %s", e) + return + futures = [] loop = asyncio.get_event_loop() # Notify all agents asynchronously through a thread pool
Vulnerability mechanics
Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
14- github.com/advisories/GHSA-xh5w-g8gq-r3v9ghsaADVISORY
- nvd.nist.gov/vuln/detail/CVE-2025-13609ghsaADVISORY
- access.redhat.com/errata/RHSA-2025:23201nvdWEB
- access.redhat.com/errata/RHSA-2025:23210nvdWEB
- access.redhat.com/errata/RHSA-2025:23628nvdWEB
- access.redhat.com/errata/RHSA-2025:23735nvdWEB
- access.redhat.com/errata/RHSA-2025:23852nvdWEB
- access.redhat.com/errata/RHSA-2026:0429nvdWEB
- access.redhat.com/security/cve/CVE-2025-13609nvdWEB
- bugzilla.redhat.com/show_bug.cginvdWEB
- github.com/keylime/keylime/commit/e1ae8de1f7b1385eaeec66572a92ff1338e6e157ghsaWEB
- github.com/keylime/keylime/issues/1820nvdWEB
- github.com/keylime/keylime/pull/1785ghsaWEB
- github.com/keylime/keylime/releases/tag/v7.13.0ghsaWEB
News mentions
0No linked articles in our index yet.