Alpaquita LinuxStreamSecurity Advisory
Search Cve

CVE-2025-8194

Published: July 29, 2025Last modified: August 7, 2025

Description

There is a defect in the CPython “tarfile” module affecting the “TarFile” extraction and entry enumeration APIs. The tar implementation would process tar archives with negative offsets without error, resulting in an infinite loop and deadlock during the parsing of maliciously crafted tar archives. This vulnerability can be mitigated by including the following patch after importing the “tarfile” module: import tarfile def _block_patched(self, count):     if count < 0: # pragma: no cover         raise tarfile.InvalidHeaderError("invalid offset")     return _block_patched._orig_block(self, count) _block_patched._orig_block = tarfile.TarInfo._block tarfile.TarInfo._block = _block_patched

Severity score breakdown

ParameterValue
Base score7.5
Attack VectorNETWORK
Attack complexityLOW
Privileges requiredNONE
User interactionNONE
ScopeUNCHANGED
ConfidentialityNONE
Integrity impactNONE
Availability impactHIGH
VectorCVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Status

ProductReleasePackageStatus
Alpaquita Linux23 LTSpython3Vulnerable (3.11.3-r0)
25 LTSpython3Vulnerable (3.12.10-r1)
Streampython3Vulnerable (3.11.4-r0)
Hardened Containers23 LTSpython3Vulnerable (3.11.3-r0)
Streampython3Vulnerable (3.11.4-r0)

References

ON THIS PAGE