Trail of Bits fickling versions up to and including 0.1.10 do not include the Python standard library modules posixsubprocess, site, and atexit in the UNSAFEIMPORTS denylist (fickle.py). Because these modules are absent from the denylist, fickling's checksafety() function returns LIKELYSAFE with zero findings for pickle payloads that invoke dangerous functions including posixsubprocess.forkexec (C-level process spawner capable of executing arbitrary binaries), site.execsitecustomize (executes arbitrary site customization code), and atexit.runexitfuncs (triggers all registered exit handler callbacks). The fickling.load() API chains checksafety() into pickle.loads() as an explicit security gate; a LIKELYSAFE verdict causes the payload to be deserialized and executed. This shares the same root cause as CVE-2026-22607 (cProfile), CVE-2025-67748 (pty), and CVE-2025-67747 (marshal/types). OvertlyBadEvals does not flag these modules because they are standard library imports. UnsafeImports does not flag them because they are not in the denylist. The UnusedVariables heuristic is defeated by the SETITEMS opcode pattern.
{
"osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/14xxx/CVE-2026-14534.json",
"cna_assigner": "BombadilSystems",
"cwe_ids": [
"CWE-184",
"CWE-502"
]
}