---
id: CVE-2025-71378
aliases:
  - GHSA-9w88-8rmg-7g2p
  - PYSEC-2026-247
title: Picklescan is missing detection when calling built-in Python cProfile.runctx
summary: Picklescan is missing detection when calling built-in Python cProfile.runctx
severity: medium
vendor: picklescan
product: picklescan
ecosystem: pip
affected:
  - picklescan < 0.0.30
patched:
  - picklescan 0.0.30
published: '2025-08-26'
updated: '2026-09-11'
sourceUpdated: '2026-09-11T19:30:05.016583371Z'
source: OSV
sourceUrl: 'https://osv.dev/vulnerability/GHSA-9w88-8rmg-7g2p'
references:
  - url: >-
      https://github.com/mmaitre314/picklescan/security/advisories/GHSA-9w88-8rmg-7g2p
  - url: >-
      https://github.com/mmaitre314/picklescan/commit/1931c2d04eaca8d20597705ff39cab78ba364e4b
  - url: 'https://github.com/mmaitre314/picklescan'
  - url: >-
      https://github.com/pypa/advisory-database/tree/main/vulns/picklescan/PYSEC-2026-247.yaml
  - url: >-
      https://www.vulncheck.com/advisories/picklescan-remote-code-execution-via-undetected-cprofile-runctx-in-pickle-files
  - url: 'https://github.com/advisories/GHSA-9w88-8rmg-7g2p'
tags:
  - osv
  - pip
  - ghsa
epss: 0.0048
epssPercentile: 0.38817
cwe:
  - CWE-502
ingestedAt: '2026-09-11T19:57:09.310Z'
---

## Overview

### Summary

Using cProfile.runctx function, which is a built-in python library function to execute remote pickle file.

### Details

The attack payload executes in the following steps:

First, the attacker craft the payload by calling to cProfile.runctx function in reduce method
Then when the victim after checking whether the pickle file is safe by using Picklescan library and this library doesn't dectect any dangerous functions, decide to pickle.load() this malicious pickle file, thus lead to remote code execution.

### PoC

```
import cProfile

class EvilCProfileRunctx:
    def __reduce__(self):
        # cProfile.runctx(cmd, globals, locals) -> exec(cmd, ...)
        return cProfile.runctx, ("__import__('os').system('whoami')", None, None)
```

### Impact

Who is impacted? Any organization or individual relying on picklescan to detect malicious pickle files inside PyTorch models.
What is the impact? Attackers can embed malicious code in pickle file that remains undetected but executes when the pickle file is loaded.
Supply Chain Attack: Attackers can distribute infected pickle files across ML models, APIs, or saved Python objects.

### Corresponding

https://github.com/FredericDT
https://github.com/Qhaoduoyu

## Affected packages

- `picklescan < 0.0.30`

## Remediation

Upgrade to a patched release:

- `picklescan 0.0.30`
