---
id: CVE-2025-71365
aliases:
  - GHSA-3329-ghmp-jmv5
title: >-
  Picklescan is vulnerable to RCE through missing detection when calling
  numpy.f2py.crackfortran.myeval
summary: >-
  Picklescan is vulnerable to RCE through missing detection when calling
  numpy.f2py.crackfortran.myeval
severity: high
cvss: 8.1
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N'
vendor: picklescan
product: picklescan
ecosystem: pip
affected:
  - picklescan < 0.0.33
patched:
  - picklescan 0.0.33
published: '2025-12-29'
updated: '2026-09-23'
sourceUpdated: '2026-09-23T18:26:57.758759916Z'
source: OSV
sourceUrl: 'https://osv.dev/vulnerability/GHSA-3329-ghmp-jmv5'
references:
  - url: >-
      https://github.com/mmaitre314/picklescan/security/advisories/GHSA-3329-ghmp-jmv5
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2025-71365'
  - url: 'https://github.com/mmaitre314/picklescan/pull/53'
  - url: >-
      https://github.com/mmaitre314/picklescan/commit/70c1c6c31beb6baaf52c8db1b6c3c0e84a6f9dab
  - url: 'https://github.com/mmaitre314/picklescan'
  - url: >-
      https://www.vulncheck.com/advisories/picklescan-arbitrary-code-execution-via-numpy-f2py-crackfortran-myeval-detection-bypass
  - url: 'https://github.com/advisories/GHSA-3329-ghmp-jmv5'
tags:
  - osv
  - pip
  - ghsa
epss: 0.00431
epssPercentile: 0.34754
cwe:
  - CWE-94
  - CWE-502
ingestedAt: '2026-07-08T18:25:44.651Z'
---

## Overview

### Summary
Picklescan uses numpy.f2py.crackfortran.myeval, which is a function in numpy to execute remote pickle files.

### Details
The attack payload executes in the following steps:

- First, the attacker crafts the payload by calling the numpy.f2py.crackfortran.myeval function in its reduce method
- Then, when the victim checks whether the pickle file is safe by using the Picklescan library and this library doesn't detect any dangerous functions, they decide to use pickle.load() on this malicious pickle file, thus leading to remote code execution.

### PoC
```
class RCE:
    def __reduce__(self):
        from numpy.f2py.crackfortran import myeval
        return (myeval, ("os.system('ls')",))
```


### Impact
Any organization or individual relying on picklescan to detect malicious pickle files inside PyTorch models.
Attackers can embed malicious code in pickle file that remains undetected but executes when the pickle file is loaded.
Attackers can distribute infected pickle files across ML models, APIs, or saved Python objects.

### Report by
Pinji Chen (cpj24@mails.tsinghua.edu.cn) from the NISL lab (https://netsec.ccert.edu.cn/about) at Tsinghua University, Guanheng Liu (coolwind326@gmail.com).

## Affected packages

- `picklescan < 0.0.33`

## Remediation

Upgrade to a patched release:

- `picklescan 0.0.33`
