CVE-2026-24765: PHPUnit Vulnerable to Unsafe Deserialization in PHPT Code Coverage Handling

Published Jan 27, 2026
·
Updated

Overview

A vulnerability has been discovered involving unsafe deserialization of code coverage data in PHPT test execution. The vulnerability exists in the cleanupForCoverage() method, which deserializes code coverage files without validation, potentially allowing remote code execution if malicious .coverage files are present prior to the execution of the PHPT test.

Technical Details

Affected Component: PHPT test runner, method cleanupForCoverage() Affected Versions: <= 8.5.51, <= 9.6.32, <= 10.5.61, <= 11.5.49, <= 12.5.7

Vulnerable Code Pattern

php if ($buffer !== false) { // Unsafe call without restrictions $coverage = @unserialize($buffer); }

The vulnerability occurs when a .coverage file, which should not exist before test execution, is deserialized without the allowedclasses parameter restriction. An attacker with local file write access can place a malicious serialized object with a wakeup() method into the file system, leading to arbitrary code execution during test runs with code coverage instrumentation enabled.

Attack Prerequisites and Constraints

This vulnerability requires local file write access to the location where PHPUnit stores or expects code coverage files for PHPT tests. This can occur through:

CI/CD Pipeline Attacks: A malicious pull request that places a .coverage file alongside test files, executed when the CI system runs tests using PHPUnit and collects code coverage information Local Development Environment: An attacker with shell access or ability to write files to the project directory Compromised Dependencies: A supply chain attack inserting malicious files into a package or monorepo

Critical Context: Running test suites from unreviewed pull requests without isolated execution is inherently a code execution risk, independent of this specific vulnerability. This represents a broader class of Poisoned Pipeline Execution (PPE) attacks affecting CI/CD systems.

Proposed Remediation Approach

Rather than just silently sanitizing the input via ['allowedclasses' => false], the maintainer has chosen to make the anomalous state explicit by treating pre-existing .coverage files for PHPT tests as an error condition.

Rationale for Error-Based Approach:

1. Visibility Over Silence: When an invariant is violated (a .coverage file existing before test execution), the error must be visible in CI/CD output, alerting operators to investigate the root cause rather than proceeding with sanitized input 2. Operational Security: A .coverage file should never exist before tests run, coverage data is generated by executing tests, not sourced from artifacts. Its presence indicates: A malicious actor placed it intentionally Build artifacts from a previous run contaminated the environment An unexpected filesystem state requiring investigation 3. Defense-in-Depth Principle: Protecting a single deserialization call does not address the fundamental attack surface. Proper mitigations for PPE attacks lie outside PHPUnit's scope: Isolate CI/CD runners (ephemeral, containerized environments) Restrict code execution on protected branches Scan pull requests and artifacts for tampering Use branch protection rules to prevent unreviewed code execution

Severity Classification

Attack Vector (AV): Local (L) — requires write access to the file system where tests execute Attack Complexity (AC): Low (L) — exploitation is straightforward once the malicious file is placed Privileges Required (PR): Low (L) — PR submitter status or contributor role provides sufficient access User Interaction (UI): None (N) — automatic execution during standard test execution Scope (S): Unchanged (U) — impact remains within the affected test execution context Confidentiality Impact (C): High (H) — full remote code execution enables complete system compromise Integrity Impact (I): High (H) — arbitrary code execution allows malicious modifications Availability Impact (A): High (H) — full code execution permits denial-of-service actions

Mitigating Factors (Environmental Context)

Organizations can reduce the effective risk of this vulnerability through proper CI/CD configuration:

Ephemeral Runners: Use containerized, single-use CI/CD runners that discard filesystem state between runs Code Review Enforcement: Require human review and approval before executing code from pull requests Branch Protection: Enforce branch protection rules that block unreviewed code execution Artifact Isolation: Separate build artifacts from source; never reuse artifacts across independent builds Access Control: Limit file write permissions in CI environments to authenticated, trusted actors

Fixed Behaviour

When a .coverage file is detected for a PHPT test prior to execution, PHPUnit will emit a clear error message identifying the anomalous state. This ensures:

Visibility: The error appears prominently in CI/CD output and test logs Investigation: Operations teams can investigate the root cause (potential tampering, environment contamination) Fail-Fast Semantics: Test execution stops rather than proceeding with an unexpected state

Recommendation

Update to the patched version immediately if a project runs PHPT tests using PHPUnit with coverage instrumentation in any CI/CD environment that executes code from external contributors. Additionally, audit the project's CI/CD configuration to ensure:

Pull requests from forks or untrusted sources execute in isolated environments Branch protection rules require human review before code execution CI/CD runners are ephemeral and discarded after each build Build artifacts are not reused across independent runs without validation

Other sources

PHPUnit is a testing framework for PHP. A vulnerability has been discovered in versions prior to 12.5.8, 11.5.50, 10.5.62, 9.6.33, and 8.5.52 involving unsafe deserialization of code coverage data in PHPT test execution. The vulnerability exists in the cleanupForCoverage() method, which deserializes code coverage files without validation, potentially allowing remote code execution if malicious .coverage files are present prior to the execution of the PHPT test. The vulnerability occurs when a .coverage file, which should not exist before test execution, is deserialized without the allowedclasses parameter restriction. An attacker with local file write access can place a malicious serialized object with a wakeup() method into the file system, leading to arbitrary code execution during test runs with code coverage instrumentation enabled. This vulnerability requires local file write access to the location where PHPUnit stores or expects code coverage files for PHPT tests. This can occur through CI/CD pipeline attacks, the local development environment, and/or compromised dependencies. Rather than just silently sanitizing the input via ['allowedclasses' => false], the maintainer has chosen to make the anomalous state explicit by treating pre-existing .coverage files for PHPT tests as an error condition. Starting in versions in versions 12.5.8, 11.5.50, 10.5.62, 9.6.33, when a .coverage file is detected for a PHPT test prior to execution, PHPUnit will emit a clear error message identifying the anomalous state. Organizations can reduce the effective risk of this vulnerability through proper CI/CD configuration, including ephemeral runners, code review enforcement, branch protection, artifact isolation, and access control.

MITRE

Affected Software

12 affected componentsFixes available
pypi/PHPUnit<12.5.8, <11.5.50, <10.5.62, <9.6.33, <8.5.52
composer/phpunit/phpunit>=12.0.0<12.5.8
12.5.8
composer/phpunit/phpunit>=11.0.0<11.5.50
11.5.50
composer/phpunit/phpunit>=10.0.0<10.5.62
10.5.62
composer/phpunit/phpunit>=9.0.0<9.6.33
9.6.33
composer/phpunit/phpunit<8.5.52
8.5.52
Phpunit Project Phpunit<8.5.52
Phpunit Project Phpunit>=9.0.0<9.6.33
Phpunit Project Phpunit>=10.0.0<10.5.62
Phpunit Project Phpunit>=11.0.0<11.5.50
Phpunit Project Phpunit>=12.0.0<12.5.8
Debian Debian Linux=11.0

Event History

Jan 27, 2026
CVE Published
via MITRE·09:35 PM
Data Sourced
via MITRE·09:35 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·10:15 PM
DescriptionSeverityWeakness
Data Sourced
via NVD·10:15 PM
RemedyAffected Software
Advisory Published
via GitHub·10:26 PM
Data Sourced
via GitHub·10:26 PM
DescriptionSeverityWeaknessAffected Software
Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of CVE-2026-24765?

CVE-2026-24765 has been classified with a severity rating that indicates a significant risk due to unsafe deserialization in PHPT code coverage.

2

How do I fix CVE-2026-24765?

To remediate CVE-2026-24765, you should upgrade PHPUnit to version 12.5.8 or above, 11.5.50 or above, 10.5.62 or above, 9.6.33 or above, or 8.5.52.

3

Which versions of PHPUnit are affected by CVE-2026-24765?

CVE-2026-24765 affects PHPUnit versions up to 12.5.8, 11.5.50, 10.5.62, 9.6.33, and 8.5.52.

4

What is the nature of the vulnerability in CVE-2026-24765?

CVE-2026-24765 involves unsafe deserialization of code coverage data during test execution in PHPUnit.

5

Is there a workaround for CVE-2026-24765?

There are no known workarounds for CVE-2026-24765; upgrading to a patched version is the recommended action.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203