6.5
MEDIUM CVSS 3.1
CVE-2025-68146
filelock has TOCTOU race condition that allows symlink attacks during lock file creation
Description

filelock is a platform-independent file lock for Python. In versions prior to 3.20.1, a Time-of-Check-Time-of-Use (TOCTOU) race condition allows local attackers to corrupt or truncate arbitrary user files through symlink attacks. The vulnerability exists in both Unix and Windows lock file creation where filelock checks if a file exists before opening it with O_TRUNC. An attacker can create a symlink pointing to a victim file in the time gap between the check and open, causing os.open() to follow the symlink and truncate the target file. All users of filelock on Unix, Linux, macOS, and Windows systems are impacted. The vulnerability cascades to dependent libraries. The attack requires local filesystem access and ability to create symlinks (standard user permissions on Unix; Developer Mode on Windows 10+). Exploitation succeeds within 1-3 attempts when lock file paths are predictable. The issue is fixed in version 3.20.1. If immediate upgrade is not possible, use SoftFileLock instead of UnixFileLock/WindowsFileLock (note: different locking semantics, may not be suitable for all use cases); ensure lock file directories have restrictive permissions (chmod 0700) to prevent untrusted users from creating symlinks; and/or monitor lock file directories for suspicious symlinks before running trusted applications. These workarounds provide only partial mitigation. The race condition remains exploitable. Upgrading to version 3.20.1 is strongly recommended.

INFO

Published Date :

Dec. 16, 2025, 7:15 p.m.

Last Modified :

March 5, 2026, 8:04 p.m.

Remotely Exploit :

No
Affected Products

The following products are affected by CVE-2025-68146 vulnerability. Even if cvefeed.io is aware of the exact versions of the products that are affected, the information is not represented in the table below.

ID Vendor Product Action
1 Tox-dev filelock
CVSS Scores
The Common Vulnerability Scoring System is a standardized framework for assessing the severity of vulnerabilities in software and systems. We collect and displays CVSS scores from various sources for each CVE.
Score Version Severity Vector Exploitability Score Impact Score Source
CVSS 3.1 MEDIUM [email protected]
CVSS 3.1 MEDIUM [email protected]
Solution
Fix a TOCTOU race condition by upgrading filelock to version 3.20.1.
  • Upgrade filelock to version 3.20.1.
  • Use SoftFileLock if upgrade is not possible.
  • Restrict lock file directory permissions.
  • Monitor directories for suspicious symlinks.
Public PoC/Exploit Available at Github

CVE-2025-68146 has a 4 public PoC/Exploit available at Github. Go to the Public Exploits tab to see the list.

References to Advisories, Solutions, and Tools

Here, you will find a curated list of external links that provide in-depth information, practical solutions, and valuable tools related to CVE-2025-68146.

URL Resource
https://github.com/tox-dev/filelock/commit/4724d7f8c3393ec1f048c93933e6e3e6ec321f0e Patch
https://github.com/tox-dev/filelock/pull/461 Issue Tracking Patch
https://github.com/tox-dev/filelock/releases/tag/3.20.1 Product Release Notes
https://github.com/tox-dev/filelock/security/advisories/GHSA-w853-jp5j-5j7f Exploit Mitigation Vendor Advisory
CWE - Common Weakness Enumeration

While CVE identifies specific instances of vulnerabilities, CWE categorizes the common flaws or weaknesses that can lead to vulnerabilities. CVE-2025-68146 is associated with the following CWEs:

We scan GitHub repositories to detect new proof-of-concept exploits. Following list is a collection of public exploits and proof-of-concepts, which have been published on GitHub (sorted by the most recently updated).

None

Python Shell Dockerfile

Updated: 1 month, 2 weeks ago
0 stars 0 fork 0 watcher
Born at : Feb. 11, 2026, 6:55 p.m. This repo has been linked 1 different CVEs too.

Just an readme

Updated: 1 month ago
0 stars 0 fork 0 watcher
Born at : Dec. 18, 2025, 8:34 p.m. This repo has been linked 1 different CVEs too.

Mealie recipe manager with AI image generation using DALL-E 3

Dockerfile Shell Python SCSS Vue TypeScript JavaScript Mako

Updated: 3 months, 1 week ago
1 stars 0 fork 0 watcher
Born at : Nov. 30, 2025, 7:56 p.m. This repo has been linked 2 different CVEs too.

None

proactive-maintenance

HCL Python Gherkin PowerShell Shell Smarty

Updated: 2 weeks, 1 day ago
2 stars 3 fork 3 watcher
Born at : July 8, 2022, 6:47 p.m. This repo has been linked 3 different CVEs too.

Results are limited to the first 15 repositories due to potential performance issues.

The following list is the news that have been mention CVE-2025-68146 vulnerability anywhere in the article.

The following table lists the changes that have been made to the CVE-2025-68146 vulnerability over time.

Vulnerability history details can be useful for understanding the evolution of a vulnerability, and for identifying the most recent changes that may impact the vulnerability's severity, exploitability, or other characteristics.

  • Initial Analysis by [email protected]

    Mar. 05, 2026

    Action Type Old Value New Value
    Added CVSS V3.1 AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:H/A:H
    Added CWE CWE-367
    Added CPE Configuration OR *cpe:2.3:a:tox-dev:filelock:*:*:*:*:*:python:*:* versions up to (excluding) 3.20.1
    Added Reference Type GitHub, Inc.: https://github.com/tox-dev/filelock/commit/4724d7f8c3393ec1f048c93933e6e3e6ec321f0e Types: Patch
    Added Reference Type GitHub, Inc.: https://github.com/tox-dev/filelock/pull/461 Types: Issue Tracking, Patch
    Added Reference Type GitHub, Inc.: https://github.com/tox-dev/filelock/releases/tag/3.20.1 Types: Product, Release Notes
    Added Reference Type GitHub, Inc.: https://github.com/tox-dev/filelock/security/advisories/GHSA-w853-jp5j-5j7f Types: Exploit, Mitigation, Vendor Advisory
  • New CVE Received by [email protected]

    Dec. 16, 2025

    Action Type Old Value New Value
    Added Description filelock is a platform-independent file lock for Python. In versions prior to 3.20.1, a Time-of-Check-Time-of-Use (TOCTOU) race condition allows local attackers to corrupt or truncate arbitrary user files through symlink attacks. The vulnerability exists in both Unix and Windows lock file creation where filelock checks if a file exists before opening it with O_TRUNC. An attacker can create a symlink pointing to a victim file in the time gap between the check and open, causing os.open() to follow the symlink and truncate the target file. All users of filelock on Unix, Linux, macOS, and Windows systems are impacted. The vulnerability cascades to dependent libraries. The attack requires local filesystem access and ability to create symlinks (standard user permissions on Unix; Developer Mode on Windows 10+). Exploitation succeeds within 1-3 attempts when lock file paths are predictable. The issue is fixed in version 3.20.1. If immediate upgrade is not possible, use SoftFileLock instead of UnixFileLock/WindowsFileLock (note: different locking semantics, may not be suitable for all use cases); ensure lock file directories have restrictive permissions (chmod 0700) to prevent untrusted users from creating symlinks; and/or monitor lock file directories for suspicious symlinks before running trusted applications. These workarounds provide only partial mitigation. The race condition remains exploitable. Upgrading to version 3.20.1 is strongly recommended.
    Added CVSS V3.1 AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:H/A:H
    Added CWE CWE-362
    Added CWE CWE-59
    Added CWE CWE-367
    Added Reference https://github.com/tox-dev/filelock/commit/4724d7f8c3393ec1f048c93933e6e3e6ec321f0e
    Added Reference https://github.com/tox-dev/filelock/pull/461
    Added Reference https://github.com/tox-dev/filelock/releases/tag/3.20.1
    Added Reference https://github.com/tox-dev/filelock/security/advisories/GHSA-w853-jp5j-5j7f
EPSS is a daily estimate of the probability of exploitation activity being observed over the next 30 days. Following chart shows the EPSS score history of the vulnerability.