CVE-2024-12216
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedA vulnerability in the `ImageClassificationDataset.from_csv()` API of the `dmlc/gluon-cv` repository, version 0.10.0, allows for arbitrary file write. The function downloads and extracts `tar.gz` files from URLs without proper sanitization, making it susceptible to a TarSlip vulnerability. Attackers can exploit this by crafting malicious tar files that, when extracted, can overwrite files on the victim's system via path traversal or faked symlinks.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceThe ImageClassificationDataset.from_csv() API in gluon-cv 0.10.0 downloads tar.gz archives from user-controlled URLs and extracts them without sanitizing file paths within the archive. This TarSlip vulnerability allows attackers to craft malicious archives containing files with path traversal sequences (e.g., ../../etc/passwd) or symlinks pointing to arbitrary locations, enabling arbitrary file write on the victim's filesystem during extraction.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Local
- Complexity
- Low
- Privileges
- None
- User interaction
- Required
- Scope
- Unchanged
- Confidentiality
- None
- Integrity
- High
- Availability
- High
CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Verify gluon-cv installation and versionRun 'pip show gluon-cv' or 'pip list | grep gluon' to check if gluon-cv is installed. Confirm the version is 0.10.0.Affected if gluon-cv version 0.10.0 is installed
-
Identify use of from_csv APISearch codebase for 'ImageClassificationDataset.from_csv' or 'from gluoncv.data import ImageClassificationDataset' patterns in Python files.Affected if Code imports and uses ImageClassificationDataset.from_csv() method
-
Check for URL parameter in from_csv callsReview all from_csv() calls to see if they pass a URL argument, particularly from configuration files, user input, or external sources.Affected if from_csv() is called with a URL parameter, especially from untrusted or configurable sources
-
Inspect extraction destinationCheck the directory where datasets are extracted. Look for writable locations like home directories, shared folders, or application directories.Affected if Extraction target is a writable directory accessible to the application
-
Look for path traversal or symlink creation indicatorsAfter running from_csv with a new URL source, inspect extracted contents using 'tar tzvf archive.tar.gz | head -20' to examine file paths for '../' sequences or symlink entries.Affected if Extracted archive contains files with '../' path components or symbolic links pointing outside the intended directory
A system is affected if gluon-cv version 0.10.0 is installed and code uses ImageClassificationDataset.from_csv() with URLs from potentially untrusted sources, leading to extraction in a writable location.
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedImplement path validation during tar extraction by checking for path traversal sequences and resolving symlinks before extraction. Use allowlist-based validation or extract to a sandboxed temporary directory first, then move files to the intended destination.
gluon-cv version 0.10.1 or later (check PyPI for latest stable release)
- 1. Check current gluon-cv version: pip show gluon-cv
- 2. If version is 0.10.0, upgrade to latest version: pip install --upgrade gluon-cv
- 3. Alternatively, specify a version newer than 0.10.0: pip install gluon-cv>=0.10.1
- 4. Verify the upgrade was successful: pip show gluon-cv
- 5. If the ImageClassificationDataset.from_csv() API is used, ensure any downloaded tar files are from trusted sources only until the upgrade is complete
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation3.0 h
- Implementation6.0 h
- Testing4.0 h
- Review / QA2.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $4,224.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2024-12216 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2024-12216 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data