7-Zip ZIP File Parsing Directory Traversal Remote Code Execution Vulnerability
CVE-2025-11001 is a 7-Zip vulnerability in ZIP archive parsing that can lead to remote code execution when a crafted ZIP file is processed. The flaw is in 7-Zip's handling of symbolic links within ZIP files, including Linux-to-Windows symlink conversion behavior described in supporting reporting. A malicious archive can cause extraction or processing to traverse outside the intended destination directory and write or place content in unintended locations. In affected versions, this directory traversal condition can be leveraged to achieve arbitrary code execution in the security context of the process performing extraction, including a service account. Public reporting indicates the issue affects Windows systems and was fixed in 7-Zip 25.00; some reporting further states affected versions include 21.02 through 24.09.
Are you exposed to this one?
Mallory correlates every CVE against your assets, your vendors, and active adversary campaigns. Know which vulnerabilities matter for you, not just which ones are loud.
Impact, mitigation & remediation
What it means. What to do now. Patch path, mitigations, and the assume-compromise checklist.
Impact
What an attacker gets, and what they’ve been doing with it.
Mitigation
If you can’t patch tonight, do this now.
Remediation
Patch, then assume compromise.
Exploits
8 valid exploits after Mallory filtered fakes, detection scripts, and README-only repos (1 hidden).
This repository contains a proof-of-concept exploit for CVE-2025-11001, a critical path traversal and remote code execution vulnerability in 7-Zip (prior to version 25.00) and p7zip. The main file, CVE-2025-11001.py, is a Python script that generates a malicious ZIP archive. The script takes user input for the output ZIP file, the symlink target (typically a sensitive file path on the victim's system), and a local file to embed (such as an executable or script). The crafted ZIP contains a directory, a symlink pointing to the attacker-specified path, and the embedded file placed under the symlink. When a vulnerable version of 7-Zip or p7zip extracts this ZIP, the symlink can cause the embedded file to be written to an arbitrary location, potentially leading to code execution. The README provides detailed usage instructions, affected platforms, and mitigation advice. No network endpoints are involved; the attack vector is local, requiring the victim to extract the malicious ZIP file.
This repository provides a Python proof-of-concept exploit for CVE-2025-11001, a vulnerability in 7-Zip (Windows, builds < 25.0) that allows arbitrary file write via symlink path traversal when extracting crafted ZIP archives. The exploit consists of a single main script (exploit/src/main.py) that reads configuration from a TOML file (exploit/resource/config.toml), specifying the output archive, source directory, target directory (to overwrite), and the payload file. The script creates a ZIP archive containing a symlink and a payload file such that, when extracted with a vulnerable 7-Zip version, the payload overwrites the specified target file (e.g., calc.exe in System32). The repository is structured with a clear separation of code, configuration, and documentation, and is intended for research and demonstration purposes only. No network endpoints are involved; the attack vector is local, requiring the victim to extract the malicious archive.
This repository contains a proof-of-concept exploit for CVE-2025-11001, a critical directory traversal and remote code execution vulnerability in 7-Zip (< 25.00) and unpatched p7zip on Linux. The main file, CVE-2025-11001.py, is a Python script that generates a malicious ZIP archive. The script allows the user to specify a symlink target (e.g., a sensitive or executable path on the victim's system) and an arbitrary file to embed. The resulting ZIP contains a directory, a symlink entry pointing to the attacker-specified path, and the embedded file placed under the symlink. When a vulnerable version of 7-Zip extracts this ZIP, the symlink can cause the embedded file to be written to an arbitrary location, potentially leading to code execution. The README.md provides detailed usage instructions, affected platforms, and mitigation advice. No network endpoints are involved; the attack is local and relies on user interaction with the crafted ZIP file.
This repository contains a proof-of-concept exploit for CVE-2025-11001, a critical directory traversal and remote code execution vulnerability in 7-Zip (< 25.00) and unpatched p7zip on Linux. The main file, CVE-2025-11001.py, is a Python script that generates a malicious ZIP archive. The script allows the user to specify a symlink target (e.g., a sensitive or executable path on the victim's system) and an arbitrary file to embed. The resulting ZIP contains a directory, a symlink entry pointing to the attacker-specified path, and the embedded file placed under the symlink. When a vulnerable version of 7-Zip extracts this ZIP, the symlink can cause the embedded file to be written to an arbitrary location, potentially leading to code execution. The README.md provides detailed usage instructions, affected platforms, and mitigation advice. No network endpoints are involved; the attack is local and relies on user interaction with the crafted ZIP file.
This repository contains a proof-of-concept exploit for CVE-2025-11001, a vulnerability in 7-Zip (versions 21.02 - 25.00) on Windows. The exploit consists of a single Python script (exploit.py) and a README.md with usage instructions. The script crafts a ZIP archive containing a directory, a symlink (pointing to a user-specified path), and an embedded payload file (such as an executable). When this ZIP is extracted by a vulnerable 7-Zip process running with Administrator privileges, the symlink can be abused to write the payload file to an arbitrary location, potentially leading to privilege escalation or arbitrary file write. The exploit is only effective on Windows and requires 7-Zip to be run as Administrator, which is typically the case for service accounts. No network endpoints are involved; the attack vector is local file system manipulation via ZIP extraction. The repository is well-structured, with clear usage instructions and a single exploit script.
This repository contains a proof-of-concept exploit for CVE-2025-11001, a high-severity directory traversal vulnerability in 7-Zip versions prior to 25.00 on Windows. The exploit is implemented in a single Python script (cve-2025-11001.py) that constructs a malicious ZIP archive containing a crafted symlink entry. When this archive is extracted by a vulnerable version of 7-Zip running with Administrator privileges, it writes an attacker-supplied payload (such as a malicious executable) to an arbitrary directory (e.g., C:\Windows\System32) on the victim's system. This can result in remote code execution if the payload is subsequently executed. The repository also includes a README.md with detailed usage instructions and vulnerability context, and a LICENSE file. The exploit requires the attacker to supply a payload file and specify the target directory for the file drop. No network endpoints are involved; the attack vector is local, relying on user interaction (archive extraction).
This repository contains a proof-of-concept exploit for CVE-2025-11001, a vulnerability in 7-Zip (versions 21.02 - 25.00) on Windows. The exploit consists of a single Python script (exploit.py) and a README.md with usage instructions. The script crafts a ZIP archive containing a directory, a symlink (pointing to a user-specified path), and an embedded payload file (such as an executable). When this ZIP is extracted by a vulnerable 7-Zip process running with Administrator privileges, the symlink can be abused to write the payload file to an arbitrary location, potentially leading to privilege escalation or arbitrary file write. The exploit is only effective on Windows and requires 7-Zip to be run as Administrator, which is typically the case for service accounts. No network endpoints are involved; the attack vector is local file system manipulation via ZIP extraction. The repository is well-structured, with clear usage instructions and a single exploit script.
This repository contains a proof-of-concept exploit for CVE-2025-11001, a vulnerability in 7-Zip on Windows. The exploit consists of a single Python script (exploit.py) and a README.md file. The script generates a specially crafted ZIP archive containing a directory, a symlink, and an attacker-supplied file (such as an executable). When this ZIP is extracted by 7-Zip running with Administrator privileges, the symlink can be abused to place the embedded file at an arbitrary location on the system, potentially leading to privilege escalation or code execution. The exploit is only effective on Windows and requires 7-Zip to be run as an administrator, which is typically the case for service accounts. The repository is structured simply, with the Python script as the main entry point and the README providing usage instructions and caveats.
Affected products & vendors
Products and vendors Mallory has correlated with this vulnerability. Open in Mallory to drill down to specific CPE configurations and version ranges.
Vendor-confirmed product mapping. Mallory continuously reconciles this list against your asset inventory.
Recent activity
133 sources tracked across advisories, community write-ups, and news. New activity surfaces here as Mallory finds it.
A 7-Zip symbolic link handling vulnerability that can cause extracted archive contents to be written to the location pointed to by a symlink.
7-Zip symbolic link–based remote code execution vulnerability with public PoC; in-the-wild exploitation not observed per the cited update.
A 7-Zip for Windows directory traversal leading to remote code execution during extraction of a specially crafted ZIP containing symbolic links, requiring user interaction (opening/extracting the archive) and potentially enabling arbitrary code execution under privileged contexts.
A 7-Zip vulnerability in ZIP symbolic link handling that enables directory traversal leading to remote code execution in the context of an elevated user/service account; exploitation is limited to Windows and requires elevated context or Developer Mode enabled.
The version that knows your environment.
Query your assets running an affected version, and investigate the blast radius.
Every observed campaign linking this CVE to a named adversary.
Malware families riding this exploit, with evidence and IOCs.
YARA, Sigma, Snort, and vendor rules, auto-deployed to your SIEM.
Cross-references every affected SKU, including bundled OEM variants.
Community discussion across Reddit, Mastodon, and other social sources.