OSV 1.4.0 · github-reviewed · 修改于 2026-05-18 21:27
发布时间
2026-05-18 21:27
GitHub 审查时间
2026-05-18 21:27
NVD 发布时间
—
源文件
advisories/github-reviewed/2026/05/GHSA-qw48-84f6-28gv/GHSA-qw48-84f6-28gv.json
Type of vulnerability: Insecure Deserialization via Python's pickle module.
Who is impacted:
Users of Graphite graph database engine versions before 0.2 who load database files from untrusted or third-party sources.
An attacker could craft a malicious database file that executes arbitrary code when loaded by the engine. This is possible because the engine used pickle for serialization, which is known to be unsafe for untrusted data.
The vulnerability has been patched starting from version 0.2.
All users should upgrade to version 0.2 or later (the current version is 0.4 at publishing time).
In version 0.2 and above, the engine uses JSON instead of pickle for database storage, eliminating the deserialization risk.
If users cannot upgrade immediately:
from graphite.Migration import convert_pickle_to_json
convert_pickle_to_json("path/to/old_database.pkl", "path/to/new_database.json")
After migration, you can safely use the database with version 0.2+.
Note: Versions 0.2 and later will show a warning when attempting to load legacy pickle files, reminding you to migrate them. Also, you can't load pickle files in 0.2 and later.
graphite.Migration module documentation