CVE-2026-59890: setuptools: MANIFEST.in exclusion bypass in sdist via Unicode normalization collision (NFC/NFD) on macOS APFS/HFS+
Summary
When building a source distribution (python -m build --sdist / setup.py sdist), setuptools' FileList applies MANIFEST.in directives (exclude, global-exclude, recursive-exclude, prune) by matching a compiled glob against on-disk file names byte-for-byte, with no Unicode normalization. On normalization-preserving filesystems (notably macOS APFS and HFS+), a file written in NFD and a MANIFEST.in rule written in NFC refer to the same file but are byte-distinct, so the exclusion silently fails to match. A file the maintainer intended to exclude is then packed into the .tar.gz and, if published, uploaded to the public, immutable PyPI index.
Details
File names in FileList.files come from os.walk (setuptools/distutils/filelist.py, findallsimple), so on APFS a file written NFD is offered to the matcher in NFD, while the MANIFEST.in pattern carries the author's editor form (typically NFC). The matching path performs no canonicalization:
python setuptools/command/egginfo.py (FileList.globalexclude) def globalexclude(self, pattern): match = translatepattern(os.path.join('', pattern)) # fnmatch.translate -> regex, no NFC/NFD return self.removefiles(match.match) # byte-level regex over raw os.walk names
A rule written NFC (café = 63 61 66 c3 a9) does not match an on-disk name written NFD (café = 63 61 66 65 cc 81), even though the filesystem treats the two as one file.
A unicodedata.normalize('NFD', ...) helper exists in setuptools/unicodeutils.py (decompose()), but it is never called in the manifest matching path, so neither the pattern nor the walked path is normalized before matching. The only normalization in this area, EggInfoCommand.manifestnormalize, uses filesysdecode (bytes→str decode only, no NFC/NFD) and runs when writing SOURCES.txt, after matching has already occurred.
Impact
MANIFEST.in exclusions are the documented mechanism maintainers use to keep secrets, local configs, and private fixtures out of the published sdist. A non-ASCII excluded file may be published to the public, immutable PyPI index despite the rule — an irreversible disclosure with no visual cue (NFC and NFD forms render identically). Exposure is filesystem-dependent and most relevant on macOS APFS/HFS+, where many maintainers build and publish. Pure-ASCII rules are unaffected.
Proof of concept
With a project containing MANIFEST.in:
global-include .txt .json global-exclude secretcafé.txt # rule saved NFC
and an on-disk file secretcafé.txt written in NFD, python -m build --sdist packs the secret file into the resulting .tar.gz, while an ASCII control file excluded by the same directive is correctly dropped — isolating the bypass to the NFC-pattern vs. NFD-name mismatch. Reproduced on macOS APFS with setuptools 82.0.1.
Remediation
Normalize both the walked path and each MANIFEST.in pattern to a single canonical form before matching, in both setuptools/command/egginfo.py (FileList) and the vendored setuptools/distutils/filelist.py. For an exclusion list, err toward excluding more, and document that MANIFEST.in matching is normalization-insensitive on macOS.
Credit
Reported by Tomas Illuminati. Coordinated via CERT/CC VINCE VU#604762.
Other sources
setuptools is a package that allows users to download, build, install, upgrade, and uninstall Python packages. Prior to 83.0.0, FileList applied MANIFEST.in exclude, global-exclude, recursive-exclude, and prune directives by matching compiled glob patterns against on-disk file names without Unicode normalization, so on macOS APFS or HFS+ an NFD file name could bypass an NFC exclusion rule and be packed into a source distribution. This issue is fixed in version 83.0.0.
— MITRE
setuptools: MANIFEST.in exclusion bypass in sdist via Unicode normalization collision (NFC/NFD) on macOS APFS/HFS+
— Microsoft
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 69.0.3-6 - Upgrade
Upgrade
pip/setuptoolsto a version that resolves this vulnerability.Fixed in 83.0.0 - Upgrade
Upgrade
setuptoolsto a version that resolves this vulnerability.Fixed in 83.0.0 - Configuration
Update FileList matching so that when building an sdist, the code path that matches compiled glob patterns against on-disk file names performs Unicode canonicalization on (1) the on-disk walked path from os.walk and (2) each MANIFEST.in pattern before doing fnmatch/regex matching. Apply the same change in both setuptools/command/egg_info.py (FileList) and the vendored setuptools/_distutils/filelist.py to prevent NFC/NFD collisions (notably on macOS APFS/HFS+).
setuptools/command/egg_info.py (FileList.global_exclude) and vendored setuptools/_distutils/filelist.py Unicode normalization in MANIFEST.in matching (exclude/global-exclude/recursive-exclude/prune directives) = Normalize both the walked path and each MANIFEST.in pattern to a single canonical form before matching (normalization-insensitive matching; applies in FileList matching path, not only in _manifest_normalize) - Compensating control
For MANIFEST.in exclude rules on macOS APFS/HFS+ (where NFC vs NFD forms can collide), document that MANIFEST.in pattern matching is normalization-insensitive after applying the fix; as a compensating approach prior to the fix, err toward excluding more and avoid relying on normalization-specific byte-distinct matching.
Event History
Frequently Asked Questions
What is the severity of CVE-2026-59890?
CVE-2026-59890 has a medium severity rating of 6.1.
How does the CVE-2026-59890 vulnerability occur?
CVE-2026-59890 occurs due to a MANIFEST.in exclusion bypass in setuptools on macOS APFS/HFS+, caused by Unicode normalization collisions.
What are the implications of CVE-2026-59890?
The implications of CVE-2026-59890 include potential unintended exposure of files when package exclusion rules are not properly enforced.
How do I fix CVE-2026-59890?
To fix CVE-2026-59890, upgrade setuptools to version 83.0.0 or later, which addresses the vulnerability.
What software is affected by CVE-2026-59890?
CVE-2026-59890 affects the setuptools package, which is used for managing Python packages.