Lookup for vulnerabilities affecting packages.

Vulnerability_idVCID-6bt7-kw89-v3dt
Summary
PHPUnit Vulnerable to Unsafe Deserialization in PHPT Code Coverage Handling
### 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 `allowed_classes` 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](https://owasp.org/www-project-top-10-ci-cd-security-risks/CICD-SEC-04-Poisoned-Pipeline-Execution) affecting CI/CD systems.

### Proposed Remediation Approach

Rather than just silently sanitizing the input via `['allowed_classes' => 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
Aliases
0
alias CVE-2026-24765
1
alias GHSA-vvj3-c3rp-c85p
Fixed_packages
0
url pkg:composer/phpunit/phpunit@8.5.52
purl pkg:composer/phpunit/phpunit@8.5.52
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.52
1
url pkg:composer/phpunit/phpunit@9.6.33
purl pkg:composer/phpunit/phpunit@9.6.33
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.33
2
url pkg:composer/phpunit/phpunit@10.5.62
purl pkg:composer/phpunit/phpunit@10.5.62
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.62
3
url pkg:composer/phpunit/phpunit@11.5.50
purl pkg:composer/phpunit/phpunit@11.5.50
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.50
4
url pkg:composer/phpunit/phpunit@12.5.8
purl pkg:composer/phpunit/phpunit@12.5.8
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.8
5
url pkg:deb/debian/phpunit@9.5.2-1?distro=trixie
purl pkg:deb/debian/phpunit@9.5.2-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.5.2-1%3Fdistro=trixie
6
url pkg:deb/debian/phpunit@9.5.2-1%2Bdeb11u1?distro=trixie
purl pkg:deb/debian/phpunit@9.5.2-1%2Bdeb11u1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.5.2-1%252Bdeb11u1%3Fdistro=trixie
7
url pkg:deb/debian/phpunit@9.6.7-1
purl pkg:deb/debian/phpunit@9.6.7-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.6.7-1
8
url pkg:deb/debian/phpunit@11.5.19-1%2Bdeb13u1?distro=trixie
purl pkg:deb/debian/phpunit@11.5.19-1%2Bdeb13u1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@11.5.19-1%252Bdeb13u1%3Fdistro=trixie
9
url pkg:deb/debian/phpunit@11.5.19-1%2Bdeb13u1
purl pkg:deb/debian/phpunit@11.5.19-1%2Bdeb13u1
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@11.5.19-1%252Bdeb13u1
10
url pkg:deb/debian/phpunit@12.5.8-1?distro=trixie
purl pkg:deb/debian/phpunit@12.5.8-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@12.5.8-1%3Fdistro=trixie
11
url pkg:deb/debian/phpunit@13.0.0-2?distro=trixie
purl pkg:deb/debian/phpunit@13.0.0-2?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@13.0.0-2%3Fdistro=trixie
12
url pkg:deb/debian/phpunit@13.0.6-1?distro=trixie
purl pkg:deb/debian/phpunit@13.0.6-1?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@13.0.6-1%3Fdistro=trixie
13
url pkg:deb/debian/phpunit@13.0.6-2?distro=trixie
purl pkg:deb/debian/phpunit@13.0.6-2?distro=trixie
is_vulnerable false
affected_by_vulnerabilities
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@13.0.6-2%3Fdistro=trixie
Affected_packages
0
url pkg:composer/phpunit/phpunit@3.7.0
purl pkg:composer/phpunit/phpunit@3.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.0
1
url pkg:composer/phpunit/phpunit@3.7.1
purl pkg:composer/phpunit/phpunit@3.7.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.1
2
url pkg:composer/phpunit/phpunit@3.7.2
purl pkg:composer/phpunit/phpunit@3.7.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.2
3
url pkg:composer/phpunit/phpunit@3.7.3
purl pkg:composer/phpunit/phpunit@3.7.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.3
4
url pkg:composer/phpunit/phpunit@3.7.4
purl pkg:composer/phpunit/phpunit@3.7.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.4
5
url pkg:composer/phpunit/phpunit@3.7.5
purl pkg:composer/phpunit/phpunit@3.7.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.5
6
url pkg:composer/phpunit/phpunit@3.7.6
purl pkg:composer/phpunit/phpunit@3.7.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.6
7
url pkg:composer/phpunit/phpunit@3.7.7
purl pkg:composer/phpunit/phpunit@3.7.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.7
8
url pkg:composer/phpunit/phpunit@3.7.8
purl pkg:composer/phpunit/phpunit@3.7.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.8
9
url pkg:composer/phpunit/phpunit@3.7.9
purl pkg:composer/phpunit/phpunit@3.7.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.9
10
url pkg:composer/phpunit/phpunit@3.7.10
purl pkg:composer/phpunit/phpunit@3.7.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.10
11
url pkg:composer/phpunit/phpunit@3.7.11
purl pkg:composer/phpunit/phpunit@3.7.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.11
12
url pkg:composer/phpunit/phpunit@3.7.12
purl pkg:composer/phpunit/phpunit@3.7.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.12
13
url pkg:composer/phpunit/phpunit@3.7.13
purl pkg:composer/phpunit/phpunit@3.7.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.13
14
url pkg:composer/phpunit/phpunit@3.7.14
purl pkg:composer/phpunit/phpunit@3.7.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.14
15
url pkg:composer/phpunit/phpunit@3.7.15
purl pkg:composer/phpunit/phpunit@3.7.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.15
16
url pkg:composer/phpunit/phpunit@3.7.16
purl pkg:composer/phpunit/phpunit@3.7.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.16
17
url pkg:composer/phpunit/phpunit@3.7.17
purl pkg:composer/phpunit/phpunit@3.7.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.17
18
url pkg:composer/phpunit/phpunit@3.7.18
purl pkg:composer/phpunit/phpunit@3.7.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.18
19
url pkg:composer/phpunit/phpunit@3.7.19
purl pkg:composer/phpunit/phpunit@3.7.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.19
20
url pkg:composer/phpunit/phpunit@3.7.20
purl pkg:composer/phpunit/phpunit@3.7.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.20
21
url pkg:composer/phpunit/phpunit@3.7.21
purl pkg:composer/phpunit/phpunit@3.7.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.21
22
url pkg:composer/phpunit/phpunit@3.7.22
purl pkg:composer/phpunit/phpunit@3.7.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.22
23
url pkg:composer/phpunit/phpunit@3.7.23
purl pkg:composer/phpunit/phpunit@3.7.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.23
24
url pkg:composer/phpunit/phpunit@3.7.24
purl pkg:composer/phpunit/phpunit@3.7.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.24
25
url pkg:composer/phpunit/phpunit@3.7.25
purl pkg:composer/phpunit/phpunit@3.7.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.25
26
url pkg:composer/phpunit/phpunit@3.7.26
purl pkg:composer/phpunit/phpunit@3.7.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.26
27
url pkg:composer/phpunit/phpunit@3.7.27
purl pkg:composer/phpunit/phpunit@3.7.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.27
28
url pkg:composer/phpunit/phpunit@3.7.28
purl pkg:composer/phpunit/phpunit@3.7.28
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.28
29
url pkg:composer/phpunit/phpunit@3.7.29
purl pkg:composer/phpunit/phpunit@3.7.29
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.29
30
url pkg:composer/phpunit/phpunit@3.7.30
purl pkg:composer/phpunit/phpunit@3.7.30
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.30
31
url pkg:composer/phpunit/phpunit@3.7.31
purl pkg:composer/phpunit/phpunit@3.7.31
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.31
32
url pkg:composer/phpunit/phpunit@3.7.32
purl pkg:composer/phpunit/phpunit@3.7.32
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.32
33
url pkg:composer/phpunit/phpunit@3.7.33
purl pkg:composer/phpunit/phpunit@3.7.33
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.33
34
url pkg:composer/phpunit/phpunit@3.7.34
purl pkg:composer/phpunit/phpunit@3.7.34
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.34
35
url pkg:composer/phpunit/phpunit@3.7.35
purl pkg:composer/phpunit/phpunit@3.7.35
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.35
36
url pkg:composer/phpunit/phpunit@3.7.36
purl pkg:composer/phpunit/phpunit@3.7.36
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.36
37
url pkg:composer/phpunit/phpunit@3.7.37
purl pkg:composer/phpunit/phpunit@3.7.37
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.37
38
url pkg:composer/phpunit/phpunit@3.7.38
purl pkg:composer/phpunit/phpunit@3.7.38
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@3.7.38
39
url pkg:composer/phpunit/phpunit@4.0.0
purl pkg:composer/phpunit/phpunit@4.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.0
40
url pkg:composer/phpunit/phpunit@4.0.1
purl pkg:composer/phpunit/phpunit@4.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.1
41
url pkg:composer/phpunit/phpunit@4.0.2
purl pkg:composer/phpunit/phpunit@4.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.2
42
url pkg:composer/phpunit/phpunit@4.0.3
purl pkg:composer/phpunit/phpunit@4.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.3
43
url pkg:composer/phpunit/phpunit@4.0.4
purl pkg:composer/phpunit/phpunit@4.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.4
44
url pkg:composer/phpunit/phpunit@4.0.5
purl pkg:composer/phpunit/phpunit@4.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.5
45
url pkg:composer/phpunit/phpunit@4.0.6
purl pkg:composer/phpunit/phpunit@4.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.6
46
url pkg:composer/phpunit/phpunit@4.0.7
purl pkg:composer/phpunit/phpunit@4.0.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.7
47
url pkg:composer/phpunit/phpunit@4.0.8
purl pkg:composer/phpunit/phpunit@4.0.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.8
48
url pkg:composer/phpunit/phpunit@4.0.9
purl pkg:composer/phpunit/phpunit@4.0.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.9
49
url pkg:composer/phpunit/phpunit@4.0.10
purl pkg:composer/phpunit/phpunit@4.0.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.10
50
url pkg:composer/phpunit/phpunit@4.0.11
purl pkg:composer/phpunit/phpunit@4.0.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.11
51
url pkg:composer/phpunit/phpunit@4.0.12
purl pkg:composer/phpunit/phpunit@4.0.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.12
52
url pkg:composer/phpunit/phpunit@4.0.13
purl pkg:composer/phpunit/phpunit@4.0.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.13
53
url pkg:composer/phpunit/phpunit@4.0.14
purl pkg:composer/phpunit/phpunit@4.0.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.14
54
url pkg:composer/phpunit/phpunit@4.0.15
purl pkg:composer/phpunit/phpunit@4.0.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.15
55
url pkg:composer/phpunit/phpunit@4.0.16
purl pkg:composer/phpunit/phpunit@4.0.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.16
56
url pkg:composer/phpunit/phpunit@4.0.17
purl pkg:composer/phpunit/phpunit@4.0.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.17
57
url pkg:composer/phpunit/phpunit@4.0.18
purl pkg:composer/phpunit/phpunit@4.0.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.18
58
url pkg:composer/phpunit/phpunit@4.0.19
purl pkg:composer/phpunit/phpunit@4.0.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.19
59
url pkg:composer/phpunit/phpunit@4.0.20
purl pkg:composer/phpunit/phpunit@4.0.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.0.20
60
url pkg:composer/phpunit/phpunit@4.1.0
purl pkg:composer/phpunit/phpunit@4.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.0
61
url pkg:composer/phpunit/phpunit@4.1.1
purl pkg:composer/phpunit/phpunit@4.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.1
62
url pkg:composer/phpunit/phpunit@4.1.2
purl pkg:composer/phpunit/phpunit@4.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.2
63
url pkg:composer/phpunit/phpunit@4.1.3
purl pkg:composer/phpunit/phpunit@4.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.3
64
url pkg:composer/phpunit/phpunit@4.1.4
purl pkg:composer/phpunit/phpunit@4.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.4
65
url pkg:composer/phpunit/phpunit@4.1.5
purl pkg:composer/phpunit/phpunit@4.1.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.5
66
url pkg:composer/phpunit/phpunit@4.1.6
purl pkg:composer/phpunit/phpunit@4.1.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.1.6
67
url pkg:composer/phpunit/phpunit@4.2.0
purl pkg:composer/phpunit/phpunit@4.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.0
68
url pkg:composer/phpunit/phpunit@4.2.1
purl pkg:composer/phpunit/phpunit@4.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.1
69
url pkg:composer/phpunit/phpunit@4.2.2
purl pkg:composer/phpunit/phpunit@4.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.2
70
url pkg:composer/phpunit/phpunit@4.2.3
purl pkg:composer/phpunit/phpunit@4.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.3
71
url pkg:composer/phpunit/phpunit@4.2.4
purl pkg:composer/phpunit/phpunit@4.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.4
72
url pkg:composer/phpunit/phpunit@4.2.5
purl pkg:composer/phpunit/phpunit@4.2.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.5
73
url pkg:composer/phpunit/phpunit@4.2.6
purl pkg:composer/phpunit/phpunit@4.2.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.2.6
74
url pkg:composer/phpunit/phpunit@4.3.0
purl pkg:composer/phpunit/phpunit@4.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.0
75
url pkg:composer/phpunit/phpunit@4.3.1
purl pkg:composer/phpunit/phpunit@4.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.1
76
url pkg:composer/phpunit/phpunit@4.3.2
purl pkg:composer/phpunit/phpunit@4.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.2
77
url pkg:composer/phpunit/phpunit@4.3.3
purl pkg:composer/phpunit/phpunit@4.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.3
78
url pkg:composer/phpunit/phpunit@4.3.4
purl pkg:composer/phpunit/phpunit@4.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.4
79
url pkg:composer/phpunit/phpunit@4.3.5
purl pkg:composer/phpunit/phpunit@4.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.3.5
80
url pkg:composer/phpunit/phpunit@4.4.0
purl pkg:composer/phpunit/phpunit@4.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.0
81
url pkg:composer/phpunit/phpunit@4.4.1
purl pkg:composer/phpunit/phpunit@4.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.1
82
url pkg:composer/phpunit/phpunit@4.4.2
purl pkg:composer/phpunit/phpunit@4.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.2
83
url pkg:composer/phpunit/phpunit@4.4.3
purl pkg:composer/phpunit/phpunit@4.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.3
84
url pkg:composer/phpunit/phpunit@4.4.4
purl pkg:composer/phpunit/phpunit@4.4.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.4
85
url pkg:composer/phpunit/phpunit@4.4.5
purl pkg:composer/phpunit/phpunit@4.4.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.4.5
86
url pkg:composer/phpunit/phpunit@4.5.0
purl pkg:composer/phpunit/phpunit@4.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.5.0
87
url pkg:composer/phpunit/phpunit@4.5.1
purl pkg:composer/phpunit/phpunit@4.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.5.1
88
url pkg:composer/phpunit/phpunit@4.6.0
purl pkg:composer/phpunit/phpunit@4.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.0
89
url pkg:composer/phpunit/phpunit@4.6.1
purl pkg:composer/phpunit/phpunit@4.6.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.1
90
url pkg:composer/phpunit/phpunit@4.6.2
purl pkg:composer/phpunit/phpunit@4.6.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.2
91
url pkg:composer/phpunit/phpunit@4.6.3
purl pkg:composer/phpunit/phpunit@4.6.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.3
92
url pkg:composer/phpunit/phpunit@4.6.4
purl pkg:composer/phpunit/phpunit@4.6.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.4
93
url pkg:composer/phpunit/phpunit@4.6.5
purl pkg:composer/phpunit/phpunit@4.6.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.5
94
url pkg:composer/phpunit/phpunit@4.6.6
purl pkg:composer/phpunit/phpunit@4.6.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.6
95
url pkg:composer/phpunit/phpunit@4.6.7
purl pkg:composer/phpunit/phpunit@4.6.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.7
96
url pkg:composer/phpunit/phpunit@4.6.8
purl pkg:composer/phpunit/phpunit@4.6.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.8
97
url pkg:composer/phpunit/phpunit@4.6.9
purl pkg:composer/phpunit/phpunit@4.6.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.9
98
url pkg:composer/phpunit/phpunit@4.6.10
purl pkg:composer/phpunit/phpunit@4.6.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.6.10
99
url pkg:composer/phpunit/phpunit@4.7.0
purl pkg:composer/phpunit/phpunit@4.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.0
100
url pkg:composer/phpunit/phpunit@4.7.1
purl pkg:composer/phpunit/phpunit@4.7.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.1
101
url pkg:composer/phpunit/phpunit@4.7.2
purl pkg:composer/phpunit/phpunit@4.7.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.2
102
url pkg:composer/phpunit/phpunit@4.7.3
purl pkg:composer/phpunit/phpunit@4.7.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.3
103
url pkg:composer/phpunit/phpunit@4.7.4
purl pkg:composer/phpunit/phpunit@4.7.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.4
104
url pkg:composer/phpunit/phpunit@4.7.5
purl pkg:composer/phpunit/phpunit@4.7.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.5
105
url pkg:composer/phpunit/phpunit@4.7.6
purl pkg:composer/phpunit/phpunit@4.7.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.6
106
url pkg:composer/phpunit/phpunit@4.7.7
purl pkg:composer/phpunit/phpunit@4.7.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.7.7
107
url pkg:composer/phpunit/phpunit@4.8.0
purl pkg:composer/phpunit/phpunit@4.8.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.0
108
url pkg:composer/phpunit/phpunit@4.8.1
purl pkg:composer/phpunit/phpunit@4.8.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.1
109
url pkg:composer/phpunit/phpunit@4.8.2
purl pkg:composer/phpunit/phpunit@4.8.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.2
110
url pkg:composer/phpunit/phpunit@4.8.3
purl pkg:composer/phpunit/phpunit@4.8.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.3
111
url pkg:composer/phpunit/phpunit@4.8.4
purl pkg:composer/phpunit/phpunit@4.8.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.4
112
url pkg:composer/phpunit/phpunit@4.8.5
purl pkg:composer/phpunit/phpunit@4.8.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.5
113
url pkg:composer/phpunit/phpunit@4.8.6
purl pkg:composer/phpunit/phpunit@4.8.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.6
114
url pkg:composer/phpunit/phpunit@4.8.7
purl pkg:composer/phpunit/phpunit@4.8.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.7
115
url pkg:composer/phpunit/phpunit@4.8.8
purl pkg:composer/phpunit/phpunit@4.8.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.8
116
url pkg:composer/phpunit/phpunit@4.8.9
purl pkg:composer/phpunit/phpunit@4.8.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.9
117
url pkg:composer/phpunit/phpunit@4.8.10
purl pkg:composer/phpunit/phpunit@4.8.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.10
118
url pkg:composer/phpunit/phpunit@4.8.11
purl pkg:composer/phpunit/phpunit@4.8.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.11
119
url pkg:composer/phpunit/phpunit@4.8.12
purl pkg:composer/phpunit/phpunit@4.8.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.12
120
url pkg:composer/phpunit/phpunit@4.8.13
purl pkg:composer/phpunit/phpunit@4.8.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.13
121
url pkg:composer/phpunit/phpunit@4.8.14
purl pkg:composer/phpunit/phpunit@4.8.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.14
122
url pkg:composer/phpunit/phpunit@4.8.15
purl pkg:composer/phpunit/phpunit@4.8.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.15
123
url pkg:composer/phpunit/phpunit@4.8.16
purl pkg:composer/phpunit/phpunit@4.8.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.16
124
url pkg:composer/phpunit/phpunit@4.8.17
purl pkg:composer/phpunit/phpunit@4.8.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.17
125
url pkg:composer/phpunit/phpunit@4.8.18
purl pkg:composer/phpunit/phpunit@4.8.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.18
126
url pkg:composer/phpunit/phpunit@4.8.19
purl pkg:composer/phpunit/phpunit@4.8.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.19
127
url pkg:composer/phpunit/phpunit@4.8.20
purl pkg:composer/phpunit/phpunit@4.8.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.20
128
url pkg:composer/phpunit/phpunit@4.8.21
purl pkg:composer/phpunit/phpunit@4.8.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.21
129
url pkg:composer/phpunit/phpunit@4.8.22
purl pkg:composer/phpunit/phpunit@4.8.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.22
130
url pkg:composer/phpunit/phpunit@4.8.23
purl pkg:composer/phpunit/phpunit@4.8.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.23
131
url pkg:composer/phpunit/phpunit@4.8.24
purl pkg:composer/phpunit/phpunit@4.8.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.24
132
url pkg:composer/phpunit/phpunit@4.8.25
purl pkg:composer/phpunit/phpunit@4.8.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.25
133
url pkg:composer/phpunit/phpunit@4.8.26
purl pkg:composer/phpunit/phpunit@4.8.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.26
134
url pkg:composer/phpunit/phpunit@4.8.27
purl pkg:composer/phpunit/phpunit@4.8.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.27
135
url pkg:composer/phpunit/phpunit@4.8.28
purl pkg:composer/phpunit/phpunit@4.8.28
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.28
136
url pkg:composer/phpunit/phpunit@4.8.29
purl pkg:composer/phpunit/phpunit@4.8.29
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.29
137
url pkg:composer/phpunit/phpunit@4.8.30
purl pkg:composer/phpunit/phpunit@4.8.30
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.30
138
url pkg:composer/phpunit/phpunit@4.8.31
purl pkg:composer/phpunit/phpunit@4.8.31
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.31
139
url pkg:composer/phpunit/phpunit@4.8.32
purl pkg:composer/phpunit/phpunit@4.8.32
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.32
140
url pkg:composer/phpunit/phpunit@4.8.33
purl pkg:composer/phpunit/phpunit@4.8.33
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.33
141
url pkg:composer/phpunit/phpunit@4.8.34
purl pkg:composer/phpunit/phpunit@4.8.34
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.34
142
url pkg:composer/phpunit/phpunit@4.8.35
purl pkg:composer/phpunit/phpunit@4.8.35
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.35
143
url pkg:composer/phpunit/phpunit@4.8.36
purl pkg:composer/phpunit/phpunit@4.8.36
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@4.8.36
144
url pkg:composer/phpunit/phpunit@5.0.0
purl pkg:composer/phpunit/phpunit@5.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.0
145
url pkg:composer/phpunit/phpunit@5.0.1
purl pkg:composer/phpunit/phpunit@5.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.1
146
url pkg:composer/phpunit/phpunit@5.0.2
purl pkg:composer/phpunit/phpunit@5.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.2
147
url pkg:composer/phpunit/phpunit@5.0.3
purl pkg:composer/phpunit/phpunit@5.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.3
148
url pkg:composer/phpunit/phpunit@5.0.4
purl pkg:composer/phpunit/phpunit@5.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.4
149
url pkg:composer/phpunit/phpunit@5.0.5
purl pkg:composer/phpunit/phpunit@5.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.5
150
url pkg:composer/phpunit/phpunit@5.0.6
purl pkg:composer/phpunit/phpunit@5.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.6
151
url pkg:composer/phpunit/phpunit@5.0.7
purl pkg:composer/phpunit/phpunit@5.0.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.7
152
url pkg:composer/phpunit/phpunit@5.0.8
purl pkg:composer/phpunit/phpunit@5.0.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.8
153
url pkg:composer/phpunit/phpunit@5.0.9
purl pkg:composer/phpunit/phpunit@5.0.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.9
154
url pkg:composer/phpunit/phpunit@5.0.10
purl pkg:composer/phpunit/phpunit@5.0.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.0.10
155
url pkg:composer/phpunit/phpunit@5.1.0
purl pkg:composer/phpunit/phpunit@5.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.0
156
url pkg:composer/phpunit/phpunit@5.1.1
purl pkg:composer/phpunit/phpunit@5.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.1
157
url pkg:composer/phpunit/phpunit@5.1.2
purl pkg:composer/phpunit/phpunit@5.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.2
158
url pkg:composer/phpunit/phpunit@5.1.3
purl pkg:composer/phpunit/phpunit@5.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.3
159
url pkg:composer/phpunit/phpunit@5.1.4
purl pkg:composer/phpunit/phpunit@5.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.4
160
url pkg:composer/phpunit/phpunit@5.1.5
purl pkg:composer/phpunit/phpunit@5.1.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.5
161
url pkg:composer/phpunit/phpunit@5.1.6
purl pkg:composer/phpunit/phpunit@5.1.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.6
162
url pkg:composer/phpunit/phpunit@5.1.7
purl pkg:composer/phpunit/phpunit@5.1.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.1.7
163
url pkg:composer/phpunit/phpunit@5.2.0
purl pkg:composer/phpunit/phpunit@5.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.0
164
url pkg:composer/phpunit/phpunit@5.2.1
purl pkg:composer/phpunit/phpunit@5.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.1
165
url pkg:composer/phpunit/phpunit@5.2.2
purl pkg:composer/phpunit/phpunit@5.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.2
166
url pkg:composer/phpunit/phpunit@5.2.3
purl pkg:composer/phpunit/phpunit@5.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.3
167
url pkg:composer/phpunit/phpunit@5.2.4
purl pkg:composer/phpunit/phpunit@5.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.4
168
url pkg:composer/phpunit/phpunit@5.2.5
purl pkg:composer/phpunit/phpunit@5.2.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.5
169
url pkg:composer/phpunit/phpunit@5.2.6
purl pkg:composer/phpunit/phpunit@5.2.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.6
170
url pkg:composer/phpunit/phpunit@5.2.7
purl pkg:composer/phpunit/phpunit@5.2.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.7
171
url pkg:composer/phpunit/phpunit@5.2.8
purl pkg:composer/phpunit/phpunit@5.2.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.8
172
url pkg:composer/phpunit/phpunit@5.2.9
purl pkg:composer/phpunit/phpunit@5.2.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.9
173
url pkg:composer/phpunit/phpunit@5.2.10
purl pkg:composer/phpunit/phpunit@5.2.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.10
174
url pkg:composer/phpunit/phpunit@5.2.11
purl pkg:composer/phpunit/phpunit@5.2.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.11
175
url pkg:composer/phpunit/phpunit@5.2.12
purl pkg:composer/phpunit/phpunit@5.2.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.2.12
176
url pkg:composer/phpunit/phpunit@5.3.0
purl pkg:composer/phpunit/phpunit@5.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.0
177
url pkg:composer/phpunit/phpunit@5.3.1
purl pkg:composer/phpunit/phpunit@5.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.1
178
url pkg:composer/phpunit/phpunit@5.3.2
purl pkg:composer/phpunit/phpunit@5.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.2
179
url pkg:composer/phpunit/phpunit@5.3.3
purl pkg:composer/phpunit/phpunit@5.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.3
180
url pkg:composer/phpunit/phpunit@5.3.4
purl pkg:composer/phpunit/phpunit@5.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.4
181
url pkg:composer/phpunit/phpunit@5.3.5
purl pkg:composer/phpunit/phpunit@5.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.3.5
182
url pkg:composer/phpunit/phpunit@5.4.0
purl pkg:composer/phpunit/phpunit@5.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.0
183
url pkg:composer/phpunit/phpunit@5.4.1
purl pkg:composer/phpunit/phpunit@5.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.1
184
url pkg:composer/phpunit/phpunit@5.4.2
purl pkg:composer/phpunit/phpunit@5.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.2
185
url pkg:composer/phpunit/phpunit@5.4.3
purl pkg:composer/phpunit/phpunit@5.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.3
186
url pkg:composer/phpunit/phpunit@5.4.4
purl pkg:composer/phpunit/phpunit@5.4.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.4
187
url pkg:composer/phpunit/phpunit@5.4.5
purl pkg:composer/phpunit/phpunit@5.4.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.5
188
url pkg:composer/phpunit/phpunit@5.4.6
purl pkg:composer/phpunit/phpunit@5.4.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.6
189
url pkg:composer/phpunit/phpunit@5.4.7
purl pkg:composer/phpunit/phpunit@5.4.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.7
190
url pkg:composer/phpunit/phpunit@5.4.8
purl pkg:composer/phpunit/phpunit@5.4.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.4.8
191
url pkg:composer/phpunit/phpunit@5.5.0
purl pkg:composer/phpunit/phpunit@5.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.0
192
url pkg:composer/phpunit/phpunit@5.5.1
purl pkg:composer/phpunit/phpunit@5.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.1
193
url pkg:composer/phpunit/phpunit@5.5.2
purl pkg:composer/phpunit/phpunit@5.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.2
194
url pkg:composer/phpunit/phpunit@5.5.3
purl pkg:composer/phpunit/phpunit@5.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.3
195
url pkg:composer/phpunit/phpunit@5.5.4
purl pkg:composer/phpunit/phpunit@5.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.4
196
url pkg:composer/phpunit/phpunit@5.5.5
purl pkg:composer/phpunit/phpunit@5.5.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.5
197
url pkg:composer/phpunit/phpunit@5.5.6
purl pkg:composer/phpunit/phpunit@5.5.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.6
198
url pkg:composer/phpunit/phpunit@5.5.7
purl pkg:composer/phpunit/phpunit@5.5.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.5.7
199
url pkg:composer/phpunit/phpunit@5.6.0
purl pkg:composer/phpunit/phpunit@5.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.0
200
url pkg:composer/phpunit/phpunit@5.6.1
purl pkg:composer/phpunit/phpunit@5.6.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.1
201
url pkg:composer/phpunit/phpunit@5.6.2
purl pkg:composer/phpunit/phpunit@5.6.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.2
202
url pkg:composer/phpunit/phpunit@5.6.3
purl pkg:composer/phpunit/phpunit@5.6.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.3
203
url pkg:composer/phpunit/phpunit@5.6.4
purl pkg:composer/phpunit/phpunit@5.6.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.4
204
url pkg:composer/phpunit/phpunit@5.6.5
purl pkg:composer/phpunit/phpunit@5.6.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.5
205
url pkg:composer/phpunit/phpunit@5.6.6
purl pkg:composer/phpunit/phpunit@5.6.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.6
206
url pkg:composer/phpunit/phpunit@5.6.7
purl pkg:composer/phpunit/phpunit@5.6.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.7
207
url pkg:composer/phpunit/phpunit@5.6.8
purl pkg:composer/phpunit/phpunit@5.6.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.6.8
208
url pkg:composer/phpunit/phpunit@5.7.0
purl pkg:composer/phpunit/phpunit@5.7.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.0
209
url pkg:composer/phpunit/phpunit@5.7.1
purl pkg:composer/phpunit/phpunit@5.7.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.1
210
url pkg:composer/phpunit/phpunit@5.7.2
purl pkg:composer/phpunit/phpunit@5.7.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.2
211
url pkg:composer/phpunit/phpunit@5.7.3
purl pkg:composer/phpunit/phpunit@5.7.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.3
212
url pkg:composer/phpunit/phpunit@5.7.4
purl pkg:composer/phpunit/phpunit@5.7.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.4
213
url pkg:composer/phpunit/phpunit@5.7.5
purl pkg:composer/phpunit/phpunit@5.7.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.5
214
url pkg:composer/phpunit/phpunit@5.7.6
purl pkg:composer/phpunit/phpunit@5.7.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.6
215
url pkg:composer/phpunit/phpunit@5.7.7
purl pkg:composer/phpunit/phpunit@5.7.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.7
216
url pkg:composer/phpunit/phpunit@5.7.8
purl pkg:composer/phpunit/phpunit@5.7.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.8
217
url pkg:composer/phpunit/phpunit@5.7.9
purl pkg:composer/phpunit/phpunit@5.7.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.9
218
url pkg:composer/phpunit/phpunit@5.7.10
purl pkg:composer/phpunit/phpunit@5.7.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.10
219
url pkg:composer/phpunit/phpunit@5.7.11
purl pkg:composer/phpunit/phpunit@5.7.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.11
220
url pkg:composer/phpunit/phpunit@5.7.12
purl pkg:composer/phpunit/phpunit@5.7.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.12
221
url pkg:composer/phpunit/phpunit@5.7.13
purl pkg:composer/phpunit/phpunit@5.7.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.13
222
url pkg:composer/phpunit/phpunit@5.7.14
purl pkg:composer/phpunit/phpunit@5.7.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.14
223
url pkg:composer/phpunit/phpunit@5.7.15
purl pkg:composer/phpunit/phpunit@5.7.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.15
224
url pkg:composer/phpunit/phpunit@5.7.16
purl pkg:composer/phpunit/phpunit@5.7.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.16
225
url pkg:composer/phpunit/phpunit@5.7.17
purl pkg:composer/phpunit/phpunit@5.7.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.17
226
url pkg:composer/phpunit/phpunit@5.7.18
purl pkg:composer/phpunit/phpunit@5.7.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.18
227
url pkg:composer/phpunit/phpunit@5.7.19
purl pkg:composer/phpunit/phpunit@5.7.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.19
228
url pkg:composer/phpunit/phpunit@5.7.20
purl pkg:composer/phpunit/phpunit@5.7.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.20
229
url pkg:composer/phpunit/phpunit@5.7.21
purl pkg:composer/phpunit/phpunit@5.7.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.21
230
url pkg:composer/phpunit/phpunit@5.7.22
purl pkg:composer/phpunit/phpunit@5.7.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.22
231
url pkg:composer/phpunit/phpunit@5.7.23
purl pkg:composer/phpunit/phpunit@5.7.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.23
232
url pkg:composer/phpunit/phpunit@5.7.24
purl pkg:composer/phpunit/phpunit@5.7.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.24
233
url pkg:composer/phpunit/phpunit@5.7.25
purl pkg:composer/phpunit/phpunit@5.7.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.25
234
url pkg:composer/phpunit/phpunit@5.7.26
purl pkg:composer/phpunit/phpunit@5.7.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.26
235
url pkg:composer/phpunit/phpunit@5.7.27
purl pkg:composer/phpunit/phpunit@5.7.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@5.7.27
236
url pkg:composer/phpunit/phpunit@6.0.0
purl pkg:composer/phpunit/phpunit@6.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.0
237
url pkg:composer/phpunit/phpunit@6.0.1
purl pkg:composer/phpunit/phpunit@6.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.1
238
url pkg:composer/phpunit/phpunit@6.0.2
purl pkg:composer/phpunit/phpunit@6.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.2
239
url pkg:composer/phpunit/phpunit@6.0.3
purl pkg:composer/phpunit/phpunit@6.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.3
240
url pkg:composer/phpunit/phpunit@6.0.4
purl pkg:composer/phpunit/phpunit@6.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.4
241
url pkg:composer/phpunit/phpunit@6.0.5
purl pkg:composer/phpunit/phpunit@6.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.5
242
url pkg:composer/phpunit/phpunit@6.0.6
purl pkg:composer/phpunit/phpunit@6.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.6
243
url pkg:composer/phpunit/phpunit@6.0.7
purl pkg:composer/phpunit/phpunit@6.0.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.7
244
url pkg:composer/phpunit/phpunit@6.0.8
purl pkg:composer/phpunit/phpunit@6.0.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.8
245
url pkg:composer/phpunit/phpunit@6.0.9
purl pkg:composer/phpunit/phpunit@6.0.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.9
246
url pkg:composer/phpunit/phpunit@6.0.10
purl pkg:composer/phpunit/phpunit@6.0.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.10
247
url pkg:composer/phpunit/phpunit@6.0.11
purl pkg:composer/phpunit/phpunit@6.0.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.11
248
url pkg:composer/phpunit/phpunit@6.0.12
purl pkg:composer/phpunit/phpunit@6.0.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.12
249
url pkg:composer/phpunit/phpunit@6.0.13
purl pkg:composer/phpunit/phpunit@6.0.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.0.13
250
url pkg:composer/phpunit/phpunit@6.1.0
purl pkg:composer/phpunit/phpunit@6.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.0
251
url pkg:composer/phpunit/phpunit@6.1.1
purl pkg:composer/phpunit/phpunit@6.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.1
252
url pkg:composer/phpunit/phpunit@6.1.2
purl pkg:composer/phpunit/phpunit@6.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.2
253
url pkg:composer/phpunit/phpunit@6.1.3
purl pkg:composer/phpunit/phpunit@6.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.3
254
url pkg:composer/phpunit/phpunit@6.1.4
purl pkg:composer/phpunit/phpunit@6.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.1.4
255
url pkg:composer/phpunit/phpunit@6.2.0
purl pkg:composer/phpunit/phpunit@6.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.0
256
url pkg:composer/phpunit/phpunit@6.2.1
purl pkg:composer/phpunit/phpunit@6.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.1
257
url pkg:composer/phpunit/phpunit@6.2.2
purl pkg:composer/phpunit/phpunit@6.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.2
258
url pkg:composer/phpunit/phpunit@6.2.3
purl pkg:composer/phpunit/phpunit@6.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.3
259
url pkg:composer/phpunit/phpunit@6.2.4
purl pkg:composer/phpunit/phpunit@6.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.2.4
260
url pkg:composer/phpunit/phpunit@6.3.0
purl pkg:composer/phpunit/phpunit@6.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.3.0
261
url pkg:composer/phpunit/phpunit@6.3.1
purl pkg:composer/phpunit/phpunit@6.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.3.1
262
url pkg:composer/phpunit/phpunit@6.4.0
purl pkg:composer/phpunit/phpunit@6.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.0
263
url pkg:composer/phpunit/phpunit@6.4.1
purl pkg:composer/phpunit/phpunit@6.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.1
264
url pkg:composer/phpunit/phpunit@6.4.2
purl pkg:composer/phpunit/phpunit@6.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.2
265
url pkg:composer/phpunit/phpunit@6.4.3
purl pkg:composer/phpunit/phpunit@6.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.3
266
url pkg:composer/phpunit/phpunit@6.4.4
purl pkg:composer/phpunit/phpunit@6.4.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.4.4
267
url pkg:composer/phpunit/phpunit@6.5.0
purl pkg:composer/phpunit/phpunit@6.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.0
268
url pkg:composer/phpunit/phpunit@6.5.1
purl pkg:composer/phpunit/phpunit@6.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.1
269
url pkg:composer/phpunit/phpunit@6.5.2
purl pkg:composer/phpunit/phpunit@6.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.2
270
url pkg:composer/phpunit/phpunit@6.5.3
purl pkg:composer/phpunit/phpunit@6.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.3
271
url pkg:composer/phpunit/phpunit@6.5.4
purl pkg:composer/phpunit/phpunit@6.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.4
272
url pkg:composer/phpunit/phpunit@6.5.5
purl pkg:composer/phpunit/phpunit@6.5.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.5
273
url pkg:composer/phpunit/phpunit@6.5.6
purl pkg:composer/phpunit/phpunit@6.5.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.6
274
url pkg:composer/phpunit/phpunit@6.5.7
purl pkg:composer/phpunit/phpunit@6.5.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.7
275
url pkg:composer/phpunit/phpunit@6.5.8
purl pkg:composer/phpunit/phpunit@6.5.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.8
276
url pkg:composer/phpunit/phpunit@6.5.9
purl pkg:composer/phpunit/phpunit@6.5.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.9
277
url pkg:composer/phpunit/phpunit@6.5.10
purl pkg:composer/phpunit/phpunit@6.5.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.10
278
url pkg:composer/phpunit/phpunit@6.5.11
purl pkg:composer/phpunit/phpunit@6.5.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.11
279
url pkg:composer/phpunit/phpunit@6.5.12
purl pkg:composer/phpunit/phpunit@6.5.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.12
280
url pkg:composer/phpunit/phpunit@6.5.13
purl pkg:composer/phpunit/phpunit@6.5.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.13
281
url pkg:composer/phpunit/phpunit@6.5.14
purl pkg:composer/phpunit/phpunit@6.5.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@6.5.14
282
url pkg:composer/phpunit/phpunit@7.0.0
purl pkg:composer/phpunit/phpunit@7.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.0.0
283
url pkg:composer/phpunit/phpunit@7.0.1
purl pkg:composer/phpunit/phpunit@7.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.0.1
284
url pkg:composer/phpunit/phpunit@7.0.2
purl pkg:composer/phpunit/phpunit@7.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.0.2
285
url pkg:composer/phpunit/phpunit@7.0.3
purl pkg:composer/phpunit/phpunit@7.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.0.3
286
url pkg:composer/phpunit/phpunit@7.1.0
purl pkg:composer/phpunit/phpunit@7.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.0
287
url pkg:composer/phpunit/phpunit@7.1.1
purl pkg:composer/phpunit/phpunit@7.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.1
288
url pkg:composer/phpunit/phpunit@7.1.2
purl pkg:composer/phpunit/phpunit@7.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.2
289
url pkg:composer/phpunit/phpunit@7.1.3
purl pkg:composer/phpunit/phpunit@7.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.3
290
url pkg:composer/phpunit/phpunit@7.1.4
purl pkg:composer/phpunit/phpunit@7.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.4
291
url pkg:composer/phpunit/phpunit@7.1.5
purl pkg:composer/phpunit/phpunit@7.1.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.1.5
292
url pkg:composer/phpunit/phpunit@7.2.0
purl pkg:composer/phpunit/phpunit@7.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.0
293
url pkg:composer/phpunit/phpunit@7.2.1
purl pkg:composer/phpunit/phpunit@7.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.1
294
url pkg:composer/phpunit/phpunit@7.2.2
purl pkg:composer/phpunit/phpunit@7.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.2
295
url pkg:composer/phpunit/phpunit@7.2.3
purl pkg:composer/phpunit/phpunit@7.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.3
296
url pkg:composer/phpunit/phpunit@7.2.4
purl pkg:composer/phpunit/phpunit@7.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.4
297
url pkg:composer/phpunit/phpunit@7.2.5
purl pkg:composer/phpunit/phpunit@7.2.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.5
298
url pkg:composer/phpunit/phpunit@7.2.6
purl pkg:composer/phpunit/phpunit@7.2.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.6
299
url pkg:composer/phpunit/phpunit@7.2.7
purl pkg:composer/phpunit/phpunit@7.2.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.2.7
300
url pkg:composer/phpunit/phpunit@7.3.0
purl pkg:composer/phpunit/phpunit@7.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.0
301
url pkg:composer/phpunit/phpunit@7.3.1
purl pkg:composer/phpunit/phpunit@7.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.1
302
url pkg:composer/phpunit/phpunit@7.3.2
purl pkg:composer/phpunit/phpunit@7.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.2
303
url pkg:composer/phpunit/phpunit@7.3.3
purl pkg:composer/phpunit/phpunit@7.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.3
304
url pkg:composer/phpunit/phpunit@7.3.4
purl pkg:composer/phpunit/phpunit@7.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.4
305
url pkg:composer/phpunit/phpunit@7.3.5
purl pkg:composer/phpunit/phpunit@7.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.3.5
306
url pkg:composer/phpunit/phpunit@7.4.0
purl pkg:composer/phpunit/phpunit@7.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.0
307
url pkg:composer/phpunit/phpunit@7.4.1
purl pkg:composer/phpunit/phpunit@7.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.1
308
url pkg:composer/phpunit/phpunit@7.4.2
purl pkg:composer/phpunit/phpunit@7.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.2
309
url pkg:composer/phpunit/phpunit@7.4.3
purl pkg:composer/phpunit/phpunit@7.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.3
310
url pkg:composer/phpunit/phpunit@7.4.4
purl pkg:composer/phpunit/phpunit@7.4.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.4
311
url pkg:composer/phpunit/phpunit@7.4.5
purl pkg:composer/phpunit/phpunit@7.4.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.4.5
312
url pkg:composer/phpunit/phpunit@7.5.0
purl pkg:composer/phpunit/phpunit@7.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.0
313
url pkg:composer/phpunit/phpunit@7.5.1
purl pkg:composer/phpunit/phpunit@7.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.1
314
url pkg:composer/phpunit/phpunit@7.5.2
purl pkg:composer/phpunit/phpunit@7.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.2
315
url pkg:composer/phpunit/phpunit@7.5.3
purl pkg:composer/phpunit/phpunit@7.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.3
316
url pkg:composer/phpunit/phpunit@7.5.4
purl pkg:composer/phpunit/phpunit@7.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.4
317
url pkg:composer/phpunit/phpunit@7.5.5
purl pkg:composer/phpunit/phpunit@7.5.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.5
318
url pkg:composer/phpunit/phpunit@7.5.6
purl pkg:composer/phpunit/phpunit@7.5.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.6
319
url pkg:composer/phpunit/phpunit@7.5.7
purl pkg:composer/phpunit/phpunit@7.5.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.7
320
url pkg:composer/phpunit/phpunit@7.5.8
purl pkg:composer/phpunit/phpunit@7.5.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.8
321
url pkg:composer/phpunit/phpunit@7.5.9
purl pkg:composer/phpunit/phpunit@7.5.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.9
322
url pkg:composer/phpunit/phpunit@7.5.10
purl pkg:composer/phpunit/phpunit@7.5.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.10
323
url pkg:composer/phpunit/phpunit@7.5.11
purl pkg:composer/phpunit/phpunit@7.5.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.11
324
url pkg:composer/phpunit/phpunit@7.5.12
purl pkg:composer/phpunit/phpunit@7.5.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.12
325
url pkg:composer/phpunit/phpunit@7.5.13
purl pkg:composer/phpunit/phpunit@7.5.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.13
326
url pkg:composer/phpunit/phpunit@7.5.14
purl pkg:composer/phpunit/phpunit@7.5.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.14
327
url pkg:composer/phpunit/phpunit@7.5.15
purl pkg:composer/phpunit/phpunit@7.5.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.15
328
url pkg:composer/phpunit/phpunit@7.5.16
purl pkg:composer/phpunit/phpunit@7.5.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.16
329
url pkg:composer/phpunit/phpunit@7.5.17
purl pkg:composer/phpunit/phpunit@7.5.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.17
330
url pkg:composer/phpunit/phpunit@7.5.18
purl pkg:composer/phpunit/phpunit@7.5.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.18
331
url pkg:composer/phpunit/phpunit@7.5.19
purl pkg:composer/phpunit/phpunit@7.5.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.19
332
url pkg:composer/phpunit/phpunit@7.5.20
purl pkg:composer/phpunit/phpunit@7.5.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@7.5.20
333
url pkg:composer/phpunit/phpunit@8.0.0
purl pkg:composer/phpunit/phpunit@8.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.0
334
url pkg:composer/phpunit/phpunit@8.0.1
purl pkg:composer/phpunit/phpunit@8.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.1
335
url pkg:composer/phpunit/phpunit@8.0.2
purl pkg:composer/phpunit/phpunit@8.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.2
336
url pkg:composer/phpunit/phpunit@8.0.3
purl pkg:composer/phpunit/phpunit@8.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.3
337
url pkg:composer/phpunit/phpunit@8.0.4
purl pkg:composer/phpunit/phpunit@8.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.4
338
url pkg:composer/phpunit/phpunit@8.0.5
purl pkg:composer/phpunit/phpunit@8.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.5
339
url pkg:composer/phpunit/phpunit@8.0.6
purl pkg:composer/phpunit/phpunit@8.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.0.6
340
url pkg:composer/phpunit/phpunit@8.1.0
purl pkg:composer/phpunit/phpunit@8.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.0
341
url pkg:composer/phpunit/phpunit@8.1.1
purl pkg:composer/phpunit/phpunit@8.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.1
342
url pkg:composer/phpunit/phpunit@8.1.2
purl pkg:composer/phpunit/phpunit@8.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.2
343
url pkg:composer/phpunit/phpunit@8.1.3
purl pkg:composer/phpunit/phpunit@8.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.3
344
url pkg:composer/phpunit/phpunit@8.1.4
purl pkg:composer/phpunit/phpunit@8.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.4
345
url pkg:composer/phpunit/phpunit@8.1.5
purl pkg:composer/phpunit/phpunit@8.1.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.5
346
url pkg:composer/phpunit/phpunit@8.1.6
purl pkg:composer/phpunit/phpunit@8.1.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.1.6
347
url pkg:composer/phpunit/phpunit@8.2.0
purl pkg:composer/phpunit/phpunit@8.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.0
348
url pkg:composer/phpunit/phpunit@8.2.1
purl pkg:composer/phpunit/phpunit@8.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.1
349
url pkg:composer/phpunit/phpunit@8.2.2
purl pkg:composer/phpunit/phpunit@8.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.2
350
url pkg:composer/phpunit/phpunit@8.2.3
purl pkg:composer/phpunit/phpunit@8.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.3
351
url pkg:composer/phpunit/phpunit@8.2.4
purl pkg:composer/phpunit/phpunit@8.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.4
352
url pkg:composer/phpunit/phpunit@8.2.5
purl pkg:composer/phpunit/phpunit@8.2.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.2.5
353
url pkg:composer/phpunit/phpunit@8.3.0
purl pkg:composer/phpunit/phpunit@8.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.0
354
url pkg:composer/phpunit/phpunit@8.3.1
purl pkg:composer/phpunit/phpunit@8.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.1
355
url pkg:composer/phpunit/phpunit@8.3.2
purl pkg:composer/phpunit/phpunit@8.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.2
356
url pkg:composer/phpunit/phpunit@8.3.3
purl pkg:composer/phpunit/phpunit@8.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.3
357
url pkg:composer/phpunit/phpunit@8.3.4
purl pkg:composer/phpunit/phpunit@8.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.4
358
url pkg:composer/phpunit/phpunit@8.3.5
purl pkg:composer/phpunit/phpunit@8.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.3.5
359
url pkg:composer/phpunit/phpunit@8.4.0
purl pkg:composer/phpunit/phpunit@8.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.4.0
360
url pkg:composer/phpunit/phpunit@8.4.1
purl pkg:composer/phpunit/phpunit@8.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.4.1
361
url pkg:composer/phpunit/phpunit@8.4.2
purl pkg:composer/phpunit/phpunit@8.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.4.2
362
url pkg:composer/phpunit/phpunit@8.4.3
purl pkg:composer/phpunit/phpunit@8.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.4.3
363
url pkg:composer/phpunit/phpunit@8.5.0
purl pkg:composer/phpunit/phpunit@8.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.0
364
url pkg:composer/phpunit/phpunit@8.5.1
purl pkg:composer/phpunit/phpunit@8.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.1
365
url pkg:composer/phpunit/phpunit@8.5.2
purl pkg:composer/phpunit/phpunit@8.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.2
366
url pkg:composer/phpunit/phpunit@8.5.3
purl pkg:composer/phpunit/phpunit@8.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.3
367
url pkg:composer/phpunit/phpunit@8.5.4
purl pkg:composer/phpunit/phpunit@8.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.4
368
url pkg:composer/phpunit/phpunit@8.5.5
purl pkg:composer/phpunit/phpunit@8.5.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.5
369
url pkg:composer/phpunit/phpunit@8.5.6
purl pkg:composer/phpunit/phpunit@8.5.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.6
370
url pkg:composer/phpunit/phpunit@8.5.7
purl pkg:composer/phpunit/phpunit@8.5.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.7
371
url pkg:composer/phpunit/phpunit@8.5.8
purl pkg:composer/phpunit/phpunit@8.5.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.8
372
url pkg:composer/phpunit/phpunit@8.5.9
purl pkg:composer/phpunit/phpunit@8.5.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.9
373
url pkg:composer/phpunit/phpunit@8.5.10
purl pkg:composer/phpunit/phpunit@8.5.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.10
374
url pkg:composer/phpunit/phpunit@8.5.11
purl pkg:composer/phpunit/phpunit@8.5.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.11
375
url pkg:composer/phpunit/phpunit@8.5.12
purl pkg:composer/phpunit/phpunit@8.5.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.12
376
url pkg:composer/phpunit/phpunit@8.5.13
purl pkg:composer/phpunit/phpunit@8.5.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.13
377
url pkg:composer/phpunit/phpunit@8.5.14
purl pkg:composer/phpunit/phpunit@8.5.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.14
378
url pkg:composer/phpunit/phpunit@8.5.15
purl pkg:composer/phpunit/phpunit@8.5.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.15
379
url pkg:composer/phpunit/phpunit@8.5.16
purl pkg:composer/phpunit/phpunit@8.5.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.16
380
url pkg:composer/phpunit/phpunit@8.5.17
purl pkg:composer/phpunit/phpunit@8.5.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.17
381
url pkg:composer/phpunit/phpunit@8.5.18
purl pkg:composer/phpunit/phpunit@8.5.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.18
382
url pkg:composer/phpunit/phpunit@8.5.19
purl pkg:composer/phpunit/phpunit@8.5.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.19
383
url pkg:composer/phpunit/phpunit@8.5.20
purl pkg:composer/phpunit/phpunit@8.5.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.20
384
url pkg:composer/phpunit/phpunit@8.5.21
purl pkg:composer/phpunit/phpunit@8.5.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.21
385
url pkg:composer/phpunit/phpunit@8.5.22
purl pkg:composer/phpunit/phpunit@8.5.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.22
386
url pkg:composer/phpunit/phpunit@8.5.23
purl pkg:composer/phpunit/phpunit@8.5.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.23
387
url pkg:composer/phpunit/phpunit@8.5.24
purl pkg:composer/phpunit/phpunit@8.5.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.24
388
url pkg:composer/phpunit/phpunit@8.5.25
purl pkg:composer/phpunit/phpunit@8.5.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.25
389
url pkg:composer/phpunit/phpunit@8.5.26
purl pkg:composer/phpunit/phpunit@8.5.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.26
390
url pkg:composer/phpunit/phpunit@8.5.27
purl pkg:composer/phpunit/phpunit@8.5.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.27
391
url pkg:composer/phpunit/phpunit@8.5.28
purl pkg:composer/phpunit/phpunit@8.5.28
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.28
392
url pkg:composer/phpunit/phpunit@8.5.29
purl pkg:composer/phpunit/phpunit@8.5.29
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.29
393
url pkg:composer/phpunit/phpunit@8.5.30
purl pkg:composer/phpunit/phpunit@8.5.30
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.30
394
url pkg:composer/phpunit/phpunit@8.5.31
purl pkg:composer/phpunit/phpunit@8.5.31
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.31
395
url pkg:composer/phpunit/phpunit@8.5.32
purl pkg:composer/phpunit/phpunit@8.5.32
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.32
396
url pkg:composer/phpunit/phpunit@8.5.33
purl pkg:composer/phpunit/phpunit@8.5.33
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.33
397
url pkg:composer/phpunit/phpunit@8.5.34
purl pkg:composer/phpunit/phpunit@8.5.34
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.34
398
url pkg:composer/phpunit/phpunit@8.5.35
purl pkg:composer/phpunit/phpunit@8.5.35
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.35
399
url pkg:composer/phpunit/phpunit@8.5.36
purl pkg:composer/phpunit/phpunit@8.5.36
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.36
400
url pkg:composer/phpunit/phpunit@8.5.37
purl pkg:composer/phpunit/phpunit@8.5.37
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.37
401
url pkg:composer/phpunit/phpunit@8.5.38
purl pkg:composer/phpunit/phpunit@8.5.38
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.38
402
url pkg:composer/phpunit/phpunit@8.5.39
purl pkg:composer/phpunit/phpunit@8.5.39
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.39
403
url pkg:composer/phpunit/phpunit@8.5.40
purl pkg:composer/phpunit/phpunit@8.5.40
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.40
404
url pkg:composer/phpunit/phpunit@8.5.41
purl pkg:composer/phpunit/phpunit@8.5.41
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.41
405
url pkg:composer/phpunit/phpunit@8.5.42
purl pkg:composer/phpunit/phpunit@8.5.42
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.42
406
url pkg:composer/phpunit/phpunit@8.5.43
purl pkg:composer/phpunit/phpunit@8.5.43
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.43
407
url pkg:composer/phpunit/phpunit@8.5.44
purl pkg:composer/phpunit/phpunit@8.5.44
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.44
408
url pkg:composer/phpunit/phpunit@8.5.45
purl pkg:composer/phpunit/phpunit@8.5.45
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.45
409
url pkg:composer/phpunit/phpunit@8.5.46
purl pkg:composer/phpunit/phpunit@8.5.46
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.46
410
url pkg:composer/phpunit/phpunit@8.5.47
purl pkg:composer/phpunit/phpunit@8.5.47
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.47
411
url pkg:composer/phpunit/phpunit@8.5.48
purl pkg:composer/phpunit/phpunit@8.5.48
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.48
412
url pkg:composer/phpunit/phpunit@8.5.49
purl pkg:composer/phpunit/phpunit@8.5.49
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.49
413
url pkg:composer/phpunit/phpunit@8.5.50
purl pkg:composer/phpunit/phpunit@8.5.50
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.50
414
url pkg:composer/phpunit/phpunit@8.5.51
purl pkg:composer/phpunit/phpunit@8.5.51
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@8.5.51
415
url pkg:composer/phpunit/phpunit@9.0.0
purl pkg:composer/phpunit/phpunit@9.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.0.0
416
url pkg:composer/phpunit/phpunit@9.0.1
purl pkg:composer/phpunit/phpunit@9.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.0.1
417
url pkg:composer/phpunit/phpunit@9.0.2
purl pkg:composer/phpunit/phpunit@9.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.0.2
418
url pkg:composer/phpunit/phpunit@9.1.0
purl pkg:composer/phpunit/phpunit@9.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.0
419
url pkg:composer/phpunit/phpunit@9.1.1
purl pkg:composer/phpunit/phpunit@9.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.1
420
url pkg:composer/phpunit/phpunit@9.1.2
purl pkg:composer/phpunit/phpunit@9.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.2
421
url pkg:composer/phpunit/phpunit@9.1.3
purl pkg:composer/phpunit/phpunit@9.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.3
422
url pkg:composer/phpunit/phpunit@9.1.4
purl pkg:composer/phpunit/phpunit@9.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.4
423
url pkg:composer/phpunit/phpunit@9.1.5
purl pkg:composer/phpunit/phpunit@9.1.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.1.5
424
url pkg:composer/phpunit/phpunit@9.2.0
purl pkg:composer/phpunit/phpunit@9.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.0
425
url pkg:composer/phpunit/phpunit@9.2.1
purl pkg:composer/phpunit/phpunit@9.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.1
426
url pkg:composer/phpunit/phpunit@9.2.2
purl pkg:composer/phpunit/phpunit@9.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.2
427
url pkg:composer/phpunit/phpunit@9.2.3
purl pkg:composer/phpunit/phpunit@9.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.3
428
url pkg:composer/phpunit/phpunit@9.2.4
purl pkg:composer/phpunit/phpunit@9.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.4
429
url pkg:composer/phpunit/phpunit@9.2.5
purl pkg:composer/phpunit/phpunit@9.2.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.5
430
url pkg:composer/phpunit/phpunit@9.2.6
purl pkg:composer/phpunit/phpunit@9.2.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.2.6
431
url pkg:composer/phpunit/phpunit@9.3.0
purl pkg:composer/phpunit/phpunit@9.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.0
432
url pkg:composer/phpunit/phpunit@9.3.1
purl pkg:composer/phpunit/phpunit@9.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.1
433
url pkg:composer/phpunit/phpunit@9.3.2
purl pkg:composer/phpunit/phpunit@9.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.2
434
url pkg:composer/phpunit/phpunit@9.3.3
purl pkg:composer/phpunit/phpunit@9.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.3
435
url pkg:composer/phpunit/phpunit@9.3.4
purl pkg:composer/phpunit/phpunit@9.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.4
436
url pkg:composer/phpunit/phpunit@9.3.5
purl pkg:composer/phpunit/phpunit@9.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.5
437
url pkg:composer/phpunit/phpunit@9.3.6
purl pkg:composer/phpunit/phpunit@9.3.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.6
438
url pkg:composer/phpunit/phpunit@9.3.7
purl pkg:composer/phpunit/phpunit@9.3.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.7
439
url pkg:composer/phpunit/phpunit@9.3.8
purl pkg:composer/phpunit/phpunit@9.3.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.8
440
url pkg:composer/phpunit/phpunit@9.3.9
purl pkg:composer/phpunit/phpunit@9.3.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.9
441
url pkg:composer/phpunit/phpunit@9.3.10
purl pkg:composer/phpunit/phpunit@9.3.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.10
442
url pkg:composer/phpunit/phpunit@9.3.11
purl pkg:composer/phpunit/phpunit@9.3.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.3.11
443
url pkg:composer/phpunit/phpunit@9.4.0
purl pkg:composer/phpunit/phpunit@9.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.0
444
url pkg:composer/phpunit/phpunit@9.4.1
purl pkg:composer/phpunit/phpunit@9.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.1
445
url pkg:composer/phpunit/phpunit@9.4.2
purl pkg:composer/phpunit/phpunit@9.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.2
446
url pkg:composer/phpunit/phpunit@9.4.3
purl pkg:composer/phpunit/phpunit@9.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.3
447
url pkg:composer/phpunit/phpunit@9.4.4
purl pkg:composer/phpunit/phpunit@9.4.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.4.4
448
url pkg:composer/phpunit/phpunit@9.5.0
purl pkg:composer/phpunit/phpunit@9.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.0
449
url pkg:composer/phpunit/phpunit@9.5.1
purl pkg:composer/phpunit/phpunit@9.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.1
450
url pkg:composer/phpunit/phpunit@9.5.2
purl pkg:composer/phpunit/phpunit@9.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.2
451
url pkg:composer/phpunit/phpunit@9.5.3
purl pkg:composer/phpunit/phpunit@9.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.3
452
url pkg:composer/phpunit/phpunit@9.5.4
purl pkg:composer/phpunit/phpunit@9.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.4
453
url pkg:composer/phpunit/phpunit@9.5.5
purl pkg:composer/phpunit/phpunit@9.5.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.5
454
url pkg:composer/phpunit/phpunit@9.5.6
purl pkg:composer/phpunit/phpunit@9.5.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.6
455
url pkg:composer/phpunit/phpunit@9.5.7
purl pkg:composer/phpunit/phpunit@9.5.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.7
456
url pkg:composer/phpunit/phpunit@9.5.8
purl pkg:composer/phpunit/phpunit@9.5.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.8
457
url pkg:composer/phpunit/phpunit@9.5.9
purl pkg:composer/phpunit/phpunit@9.5.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.9
458
url pkg:composer/phpunit/phpunit@9.5.10
purl pkg:composer/phpunit/phpunit@9.5.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.10
459
url pkg:composer/phpunit/phpunit@9.5.11
purl pkg:composer/phpunit/phpunit@9.5.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.11
460
url pkg:composer/phpunit/phpunit@9.5.12
purl pkg:composer/phpunit/phpunit@9.5.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.12
461
url pkg:composer/phpunit/phpunit@9.5.13
purl pkg:composer/phpunit/phpunit@9.5.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.13
462
url pkg:composer/phpunit/phpunit@9.5.14
purl pkg:composer/phpunit/phpunit@9.5.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.14
463
url pkg:composer/phpunit/phpunit@9.5.16
purl pkg:composer/phpunit/phpunit@9.5.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.16
464
url pkg:composer/phpunit/phpunit@9.5.17
purl pkg:composer/phpunit/phpunit@9.5.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.17
465
url pkg:composer/phpunit/phpunit@9.5.18
purl pkg:composer/phpunit/phpunit@9.5.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.18
466
url pkg:composer/phpunit/phpunit@9.5.19
purl pkg:composer/phpunit/phpunit@9.5.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.19
467
url pkg:composer/phpunit/phpunit@9.5.20
purl pkg:composer/phpunit/phpunit@9.5.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.20
468
url pkg:composer/phpunit/phpunit@9.5.21
purl pkg:composer/phpunit/phpunit@9.5.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.21
469
url pkg:composer/phpunit/phpunit@9.5.22
purl pkg:composer/phpunit/phpunit@9.5.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.22
470
url pkg:composer/phpunit/phpunit@9.5.23
purl pkg:composer/phpunit/phpunit@9.5.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.23
471
url pkg:composer/phpunit/phpunit@9.5.24
purl pkg:composer/phpunit/phpunit@9.5.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.24
472
url pkg:composer/phpunit/phpunit@9.5.25
purl pkg:composer/phpunit/phpunit@9.5.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.25
473
url pkg:composer/phpunit/phpunit@9.5.26
purl pkg:composer/phpunit/phpunit@9.5.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.26
474
url pkg:composer/phpunit/phpunit@9.5.27
purl pkg:composer/phpunit/phpunit@9.5.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.27
475
url pkg:composer/phpunit/phpunit@9.5.28
purl pkg:composer/phpunit/phpunit@9.5.28
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.5.28
476
url pkg:composer/phpunit/phpunit@9.6.0
purl pkg:composer/phpunit/phpunit@9.6.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.0
477
url pkg:composer/phpunit/phpunit@9.6.1
purl pkg:composer/phpunit/phpunit@9.6.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.1
478
url pkg:composer/phpunit/phpunit@9.6.2
purl pkg:composer/phpunit/phpunit@9.6.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.2
479
url pkg:composer/phpunit/phpunit@9.6.3
purl pkg:composer/phpunit/phpunit@9.6.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.3
480
url pkg:composer/phpunit/phpunit@9.6.4
purl pkg:composer/phpunit/phpunit@9.6.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.4
481
url pkg:composer/phpunit/phpunit@9.6.5
purl pkg:composer/phpunit/phpunit@9.6.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.5
482
url pkg:composer/phpunit/phpunit@9.6.6
purl pkg:composer/phpunit/phpunit@9.6.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.6
483
url pkg:composer/phpunit/phpunit@9.6.7
purl pkg:composer/phpunit/phpunit@9.6.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.7
484
url pkg:composer/phpunit/phpunit@9.6.8
purl pkg:composer/phpunit/phpunit@9.6.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.8
485
url pkg:composer/phpunit/phpunit@9.6.9
purl pkg:composer/phpunit/phpunit@9.6.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.9
486
url pkg:composer/phpunit/phpunit@9.6.10
purl pkg:composer/phpunit/phpunit@9.6.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.10
487
url pkg:composer/phpunit/phpunit@9.6.11
purl pkg:composer/phpunit/phpunit@9.6.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.11
488
url pkg:composer/phpunit/phpunit@9.6.12
purl pkg:composer/phpunit/phpunit@9.6.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.12
489
url pkg:composer/phpunit/phpunit@9.6.13
purl pkg:composer/phpunit/phpunit@9.6.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.13
490
url pkg:composer/phpunit/phpunit@9.6.14
purl pkg:composer/phpunit/phpunit@9.6.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.14
491
url pkg:composer/phpunit/phpunit@9.6.15
purl pkg:composer/phpunit/phpunit@9.6.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.15
492
url pkg:composer/phpunit/phpunit@9.6.16
purl pkg:composer/phpunit/phpunit@9.6.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.16
493
url pkg:composer/phpunit/phpunit@9.6.17
purl pkg:composer/phpunit/phpunit@9.6.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.17
494
url pkg:composer/phpunit/phpunit@9.6.18
purl pkg:composer/phpunit/phpunit@9.6.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.18
495
url pkg:composer/phpunit/phpunit@9.6.19
purl pkg:composer/phpunit/phpunit@9.6.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.19
496
url pkg:composer/phpunit/phpunit@9.6.20
purl pkg:composer/phpunit/phpunit@9.6.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.20
497
url pkg:composer/phpunit/phpunit@9.6.21
purl pkg:composer/phpunit/phpunit@9.6.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.21
498
url pkg:composer/phpunit/phpunit@9.6.22
purl pkg:composer/phpunit/phpunit@9.6.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.22
499
url pkg:composer/phpunit/phpunit@9.6.23
purl pkg:composer/phpunit/phpunit@9.6.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.23
500
url pkg:composer/phpunit/phpunit@9.6.24
purl pkg:composer/phpunit/phpunit@9.6.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.24
501
url pkg:composer/phpunit/phpunit@9.6.25
purl pkg:composer/phpunit/phpunit@9.6.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.25
502
url pkg:composer/phpunit/phpunit@9.6.26
purl pkg:composer/phpunit/phpunit@9.6.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.26
503
url pkg:composer/phpunit/phpunit@9.6.27
purl pkg:composer/phpunit/phpunit@9.6.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.27
504
url pkg:composer/phpunit/phpunit@9.6.28
purl pkg:composer/phpunit/phpunit@9.6.28
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.28
505
url pkg:composer/phpunit/phpunit@9.6.29
purl pkg:composer/phpunit/phpunit@9.6.29
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.29
506
url pkg:composer/phpunit/phpunit@9.6.30
purl pkg:composer/phpunit/phpunit@9.6.30
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.30
507
url pkg:composer/phpunit/phpunit@9.6.31
purl pkg:composer/phpunit/phpunit@9.6.31
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.31
508
url pkg:composer/phpunit/phpunit@9.6.32
purl pkg:composer/phpunit/phpunit@9.6.32
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@9.6.32
509
url pkg:composer/phpunit/phpunit@10.0.0
purl pkg:composer/phpunit/phpunit@10.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.0
510
url pkg:composer/phpunit/phpunit@10.0.1
purl pkg:composer/phpunit/phpunit@10.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.1
511
url pkg:composer/phpunit/phpunit@10.0.2
purl pkg:composer/phpunit/phpunit@10.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.2
512
url pkg:composer/phpunit/phpunit@10.0.3
purl pkg:composer/phpunit/phpunit@10.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.3
513
url pkg:composer/phpunit/phpunit@10.0.4
purl pkg:composer/phpunit/phpunit@10.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.4
514
url pkg:composer/phpunit/phpunit@10.0.5
purl pkg:composer/phpunit/phpunit@10.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.5
515
url pkg:composer/phpunit/phpunit@10.0.6
purl pkg:composer/phpunit/phpunit@10.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.6
516
url pkg:composer/phpunit/phpunit@10.0.7
purl pkg:composer/phpunit/phpunit@10.0.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.7
517
url pkg:composer/phpunit/phpunit@10.0.8
purl pkg:composer/phpunit/phpunit@10.0.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.8
518
url pkg:composer/phpunit/phpunit@10.0.9
purl pkg:composer/phpunit/phpunit@10.0.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.9
519
url pkg:composer/phpunit/phpunit@10.0.10
purl pkg:composer/phpunit/phpunit@10.0.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.10
520
url pkg:composer/phpunit/phpunit@10.0.11
purl pkg:composer/phpunit/phpunit@10.0.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.11
521
url pkg:composer/phpunit/phpunit@10.0.12
purl pkg:composer/phpunit/phpunit@10.0.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.12
522
url pkg:composer/phpunit/phpunit@10.0.13
purl pkg:composer/phpunit/phpunit@10.0.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.13
523
url pkg:composer/phpunit/phpunit@10.0.14
purl pkg:composer/phpunit/phpunit@10.0.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.14
524
url pkg:composer/phpunit/phpunit@10.0.15
purl pkg:composer/phpunit/phpunit@10.0.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.15
525
url pkg:composer/phpunit/phpunit@10.0.16
purl pkg:composer/phpunit/phpunit@10.0.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.16
526
url pkg:composer/phpunit/phpunit@10.0.17
purl pkg:composer/phpunit/phpunit@10.0.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.17
527
url pkg:composer/phpunit/phpunit@10.0.18
purl pkg:composer/phpunit/phpunit@10.0.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.18
528
url pkg:composer/phpunit/phpunit@10.0.19
purl pkg:composer/phpunit/phpunit@10.0.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.0.19
529
url pkg:composer/phpunit/phpunit@10.1.0
purl pkg:composer/phpunit/phpunit@10.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.1.0
530
url pkg:composer/phpunit/phpunit@10.1.1
purl pkg:composer/phpunit/phpunit@10.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.1.1
531
url pkg:composer/phpunit/phpunit@10.1.2
purl pkg:composer/phpunit/phpunit@10.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.1.2
532
url pkg:composer/phpunit/phpunit@10.1.3
purl pkg:composer/phpunit/phpunit@10.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.1.3
533
url pkg:composer/phpunit/phpunit@10.2.0
purl pkg:composer/phpunit/phpunit@10.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.0
534
url pkg:composer/phpunit/phpunit@10.2.1
purl pkg:composer/phpunit/phpunit@10.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.1
535
url pkg:composer/phpunit/phpunit@10.2.2
purl pkg:composer/phpunit/phpunit@10.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.2
536
url pkg:composer/phpunit/phpunit@10.2.3
purl pkg:composer/phpunit/phpunit@10.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.3
537
url pkg:composer/phpunit/phpunit@10.2.4
purl pkg:composer/phpunit/phpunit@10.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.4
538
url pkg:composer/phpunit/phpunit@10.2.5
purl pkg:composer/phpunit/phpunit@10.2.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.5
539
url pkg:composer/phpunit/phpunit@10.2.6
purl pkg:composer/phpunit/phpunit@10.2.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.6
540
url pkg:composer/phpunit/phpunit@10.2.7
purl pkg:composer/phpunit/phpunit@10.2.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.2.7
541
url pkg:composer/phpunit/phpunit@10.3.0
purl pkg:composer/phpunit/phpunit@10.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.0
542
url pkg:composer/phpunit/phpunit@10.3.1
purl pkg:composer/phpunit/phpunit@10.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.1
543
url pkg:composer/phpunit/phpunit@10.3.2
purl pkg:composer/phpunit/phpunit@10.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.2
544
url pkg:composer/phpunit/phpunit@10.3.3
purl pkg:composer/phpunit/phpunit@10.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.3
545
url pkg:composer/phpunit/phpunit@10.3.4
purl pkg:composer/phpunit/phpunit@10.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.4
546
url pkg:composer/phpunit/phpunit@10.3.5
purl pkg:composer/phpunit/phpunit@10.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.3.5
547
url pkg:composer/phpunit/phpunit@10.4.0
purl pkg:composer/phpunit/phpunit@10.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.4.0
548
url pkg:composer/phpunit/phpunit@10.4.1
purl pkg:composer/phpunit/phpunit@10.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.4.1
549
url pkg:composer/phpunit/phpunit@10.4.2
purl pkg:composer/phpunit/phpunit@10.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.4.2
550
url pkg:composer/phpunit/phpunit@10.5.0
purl pkg:composer/phpunit/phpunit@10.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.0
551
url pkg:composer/phpunit/phpunit@10.5.1
purl pkg:composer/phpunit/phpunit@10.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.1
552
url pkg:composer/phpunit/phpunit@10.5.2
purl pkg:composer/phpunit/phpunit@10.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.2
553
url pkg:composer/phpunit/phpunit@10.5.3
purl pkg:composer/phpunit/phpunit@10.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.3
554
url pkg:composer/phpunit/phpunit@10.5.4
purl pkg:composer/phpunit/phpunit@10.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.4
555
url pkg:composer/phpunit/phpunit@10.5.5
purl pkg:composer/phpunit/phpunit@10.5.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.5
556
url pkg:composer/phpunit/phpunit@10.5.6
purl pkg:composer/phpunit/phpunit@10.5.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.6
557
url pkg:composer/phpunit/phpunit@10.5.7
purl pkg:composer/phpunit/phpunit@10.5.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.7
558
url pkg:composer/phpunit/phpunit@10.5.8
purl pkg:composer/phpunit/phpunit@10.5.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.8
559
url pkg:composer/phpunit/phpunit@10.5.9
purl pkg:composer/phpunit/phpunit@10.5.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.9
560
url pkg:composer/phpunit/phpunit@10.5.10
purl pkg:composer/phpunit/phpunit@10.5.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.10
561
url pkg:composer/phpunit/phpunit@10.5.11
purl pkg:composer/phpunit/phpunit@10.5.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.11
562
url pkg:composer/phpunit/phpunit@10.5.12
purl pkg:composer/phpunit/phpunit@10.5.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.12
563
url pkg:composer/phpunit/phpunit@10.5.13
purl pkg:composer/phpunit/phpunit@10.5.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.13
564
url pkg:composer/phpunit/phpunit@10.5.14
purl pkg:composer/phpunit/phpunit@10.5.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.14
565
url pkg:composer/phpunit/phpunit@10.5.15
purl pkg:composer/phpunit/phpunit@10.5.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.15
566
url pkg:composer/phpunit/phpunit@10.5.16
purl pkg:composer/phpunit/phpunit@10.5.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.16
567
url pkg:composer/phpunit/phpunit@10.5.17
purl pkg:composer/phpunit/phpunit@10.5.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.17
568
url pkg:composer/phpunit/phpunit@10.5.18
purl pkg:composer/phpunit/phpunit@10.5.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.18
569
url pkg:composer/phpunit/phpunit@10.5.19
purl pkg:composer/phpunit/phpunit@10.5.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.19
570
url pkg:composer/phpunit/phpunit@10.5.20
purl pkg:composer/phpunit/phpunit@10.5.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.20
571
url pkg:composer/phpunit/phpunit@10.5.21
purl pkg:composer/phpunit/phpunit@10.5.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.21
572
url pkg:composer/phpunit/phpunit@10.5.22
purl pkg:composer/phpunit/phpunit@10.5.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.22
573
url pkg:composer/phpunit/phpunit@10.5.23
purl pkg:composer/phpunit/phpunit@10.5.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.23
574
url pkg:composer/phpunit/phpunit@10.5.24
purl pkg:composer/phpunit/phpunit@10.5.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.24
575
url pkg:composer/phpunit/phpunit@10.5.25
purl pkg:composer/phpunit/phpunit@10.5.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.25
576
url pkg:composer/phpunit/phpunit@10.5.26
purl pkg:composer/phpunit/phpunit@10.5.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.26
577
url pkg:composer/phpunit/phpunit@10.5.27
purl pkg:composer/phpunit/phpunit@10.5.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.27
578
url pkg:composer/phpunit/phpunit@10.5.28
purl pkg:composer/phpunit/phpunit@10.5.28
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.28
579
url pkg:composer/phpunit/phpunit@10.5.29
purl pkg:composer/phpunit/phpunit@10.5.29
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.29
580
url pkg:composer/phpunit/phpunit@10.5.30
purl pkg:composer/phpunit/phpunit@10.5.30
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.30
581
url pkg:composer/phpunit/phpunit@10.5.31
purl pkg:composer/phpunit/phpunit@10.5.31
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.31
582
url pkg:composer/phpunit/phpunit@10.5.32
purl pkg:composer/phpunit/phpunit@10.5.32
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.32
583
url pkg:composer/phpunit/phpunit@10.5.33
purl pkg:composer/phpunit/phpunit@10.5.33
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.33
584
url pkg:composer/phpunit/phpunit@10.5.34
purl pkg:composer/phpunit/phpunit@10.5.34
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.34
585
url pkg:composer/phpunit/phpunit@10.5.35
purl pkg:composer/phpunit/phpunit@10.5.35
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.35
586
url pkg:composer/phpunit/phpunit@10.5.36
purl pkg:composer/phpunit/phpunit@10.5.36
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.36
587
url pkg:composer/phpunit/phpunit@10.5.37
purl pkg:composer/phpunit/phpunit@10.5.37
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.37
588
url pkg:composer/phpunit/phpunit@10.5.38
purl pkg:composer/phpunit/phpunit@10.5.38
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.38
589
url pkg:composer/phpunit/phpunit@10.5.39
purl pkg:composer/phpunit/phpunit@10.5.39
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.39
590
url pkg:composer/phpunit/phpunit@10.5.40
purl pkg:composer/phpunit/phpunit@10.5.40
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.40
591
url pkg:composer/phpunit/phpunit@10.5.41
purl pkg:composer/phpunit/phpunit@10.5.41
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.41
592
url pkg:composer/phpunit/phpunit@10.5.42
purl pkg:composer/phpunit/phpunit@10.5.42
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.42
593
url pkg:composer/phpunit/phpunit@10.5.43
purl pkg:composer/phpunit/phpunit@10.5.43
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.43
594
url pkg:composer/phpunit/phpunit@10.5.44
purl pkg:composer/phpunit/phpunit@10.5.44
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.44
595
url pkg:composer/phpunit/phpunit@10.5.45
purl pkg:composer/phpunit/phpunit@10.5.45
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.45
596
url pkg:composer/phpunit/phpunit@10.5.46
purl pkg:composer/phpunit/phpunit@10.5.46
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.46
597
url pkg:composer/phpunit/phpunit@10.5.47
purl pkg:composer/phpunit/phpunit@10.5.47
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.47
598
url pkg:composer/phpunit/phpunit@10.5.48
purl pkg:composer/phpunit/phpunit@10.5.48
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.48
599
url pkg:composer/phpunit/phpunit@10.5.49
purl pkg:composer/phpunit/phpunit@10.5.49
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.49
600
url pkg:composer/phpunit/phpunit@10.5.50
purl pkg:composer/phpunit/phpunit@10.5.50
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.50
601
url pkg:composer/phpunit/phpunit@10.5.51
purl pkg:composer/phpunit/phpunit@10.5.51
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.51
602
url pkg:composer/phpunit/phpunit@10.5.52
purl pkg:composer/phpunit/phpunit@10.5.52
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.52
603
url pkg:composer/phpunit/phpunit@10.5.53
purl pkg:composer/phpunit/phpunit@10.5.53
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.53
604
url pkg:composer/phpunit/phpunit@10.5.54
purl pkg:composer/phpunit/phpunit@10.5.54
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.54
605
url pkg:composer/phpunit/phpunit@10.5.55
purl pkg:composer/phpunit/phpunit@10.5.55
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.55
606
url pkg:composer/phpunit/phpunit@10.5.56
purl pkg:composer/phpunit/phpunit@10.5.56
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.56
607
url pkg:composer/phpunit/phpunit@10.5.57
purl pkg:composer/phpunit/phpunit@10.5.57
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.57
608
url pkg:composer/phpunit/phpunit@10.5.58
purl pkg:composer/phpunit/phpunit@10.5.58
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.58
609
url pkg:composer/phpunit/phpunit@10.5.59
purl pkg:composer/phpunit/phpunit@10.5.59
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.59
610
url pkg:composer/phpunit/phpunit@10.5.60
purl pkg:composer/phpunit/phpunit@10.5.60
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.60
611
url pkg:composer/phpunit/phpunit@10.5.61
purl pkg:composer/phpunit/phpunit@10.5.61
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@10.5.61
612
url pkg:composer/phpunit/phpunit@11.0.0
purl pkg:composer/phpunit/phpunit@11.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.0
613
url pkg:composer/phpunit/phpunit@11.0.1
purl pkg:composer/phpunit/phpunit@11.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.1
614
url pkg:composer/phpunit/phpunit@11.0.2
purl pkg:composer/phpunit/phpunit@11.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.2
615
url pkg:composer/phpunit/phpunit@11.0.3
purl pkg:composer/phpunit/phpunit@11.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.3
616
url pkg:composer/phpunit/phpunit@11.0.4
purl pkg:composer/phpunit/phpunit@11.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.4
617
url pkg:composer/phpunit/phpunit@11.0.5
purl pkg:composer/phpunit/phpunit@11.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.5
618
url pkg:composer/phpunit/phpunit@11.0.6
purl pkg:composer/phpunit/phpunit@11.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.6
619
url pkg:composer/phpunit/phpunit@11.0.7
purl pkg:composer/phpunit/phpunit@11.0.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.7
620
url pkg:composer/phpunit/phpunit@11.0.8
purl pkg:composer/phpunit/phpunit@11.0.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.8
621
url pkg:composer/phpunit/phpunit@11.0.9
purl pkg:composer/phpunit/phpunit@11.0.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.9
622
url pkg:composer/phpunit/phpunit@11.0.10
purl pkg:composer/phpunit/phpunit@11.0.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.0.10
623
url pkg:composer/phpunit/phpunit@11.1.0
purl pkg:composer/phpunit/phpunit@11.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.1.0
624
url pkg:composer/phpunit/phpunit@11.1.1
purl pkg:composer/phpunit/phpunit@11.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.1.1
625
url pkg:composer/phpunit/phpunit@11.1.2
purl pkg:composer/phpunit/phpunit@11.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.1.2
626
url pkg:composer/phpunit/phpunit@11.1.3
purl pkg:composer/phpunit/phpunit@11.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.1.3
627
url pkg:composer/phpunit/phpunit@11.2.0
purl pkg:composer/phpunit/phpunit@11.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.0
628
url pkg:composer/phpunit/phpunit@11.2.1
purl pkg:composer/phpunit/phpunit@11.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.1
629
url pkg:composer/phpunit/phpunit@11.2.2
purl pkg:composer/phpunit/phpunit@11.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.2
630
url pkg:composer/phpunit/phpunit@11.2.3
purl pkg:composer/phpunit/phpunit@11.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.3
631
url pkg:composer/phpunit/phpunit@11.2.4
purl pkg:composer/phpunit/phpunit@11.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.4
632
url pkg:composer/phpunit/phpunit@11.2.5
purl pkg:composer/phpunit/phpunit@11.2.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.5
633
url pkg:composer/phpunit/phpunit@11.2.6
purl pkg:composer/phpunit/phpunit@11.2.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.6
634
url pkg:composer/phpunit/phpunit@11.2.7
purl pkg:composer/phpunit/phpunit@11.2.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.7
635
url pkg:composer/phpunit/phpunit@11.2.8
purl pkg:composer/phpunit/phpunit@11.2.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.8
636
url pkg:composer/phpunit/phpunit@11.2.9
purl pkg:composer/phpunit/phpunit@11.2.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.2.9
637
url pkg:composer/phpunit/phpunit@11.3.0
purl pkg:composer/phpunit/phpunit@11.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.0
638
url pkg:composer/phpunit/phpunit@11.3.1
purl pkg:composer/phpunit/phpunit@11.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.1
639
url pkg:composer/phpunit/phpunit@11.3.2
purl pkg:composer/phpunit/phpunit@11.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.2
640
url pkg:composer/phpunit/phpunit@11.3.3
purl pkg:composer/phpunit/phpunit@11.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.3
641
url pkg:composer/phpunit/phpunit@11.3.4
purl pkg:composer/phpunit/phpunit@11.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.4
642
url pkg:composer/phpunit/phpunit@11.3.5
purl pkg:composer/phpunit/phpunit@11.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.5
643
url pkg:composer/phpunit/phpunit@11.3.6
purl pkg:composer/phpunit/phpunit@11.3.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.3.6
644
url pkg:composer/phpunit/phpunit@11.4.0
purl pkg:composer/phpunit/phpunit@11.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.0
645
url pkg:composer/phpunit/phpunit@11.4.1
purl pkg:composer/phpunit/phpunit@11.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.1
646
url pkg:composer/phpunit/phpunit@11.4.2
purl pkg:composer/phpunit/phpunit@11.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.2
647
url pkg:composer/phpunit/phpunit@11.4.3
purl pkg:composer/phpunit/phpunit@11.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.3
648
url pkg:composer/phpunit/phpunit@11.4.4
purl pkg:composer/phpunit/phpunit@11.4.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.4.4
649
url pkg:composer/phpunit/phpunit@11.5.0
purl pkg:composer/phpunit/phpunit@11.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.0
650
url pkg:composer/phpunit/phpunit@11.5.1
purl pkg:composer/phpunit/phpunit@11.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.1
651
url pkg:composer/phpunit/phpunit@11.5.2
purl pkg:composer/phpunit/phpunit@11.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.2
652
url pkg:composer/phpunit/phpunit@11.5.3
purl pkg:composer/phpunit/phpunit@11.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.3
653
url pkg:composer/phpunit/phpunit@11.5.4
purl pkg:composer/phpunit/phpunit@11.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.4
654
url pkg:composer/phpunit/phpunit@11.5.5
purl pkg:composer/phpunit/phpunit@11.5.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.5
655
url pkg:composer/phpunit/phpunit@11.5.6
purl pkg:composer/phpunit/phpunit@11.5.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.6
656
url pkg:composer/phpunit/phpunit@11.5.7
purl pkg:composer/phpunit/phpunit@11.5.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.7
657
url pkg:composer/phpunit/phpunit@11.5.8
purl pkg:composer/phpunit/phpunit@11.5.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.8
658
url pkg:composer/phpunit/phpunit@11.5.9
purl pkg:composer/phpunit/phpunit@11.5.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.9
659
url pkg:composer/phpunit/phpunit@11.5.10
purl pkg:composer/phpunit/phpunit@11.5.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.10
660
url pkg:composer/phpunit/phpunit@11.5.11
purl pkg:composer/phpunit/phpunit@11.5.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.11
661
url pkg:composer/phpunit/phpunit@11.5.12
purl pkg:composer/phpunit/phpunit@11.5.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.12
662
url pkg:composer/phpunit/phpunit@11.5.13
purl pkg:composer/phpunit/phpunit@11.5.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.13
663
url pkg:composer/phpunit/phpunit@11.5.14
purl pkg:composer/phpunit/phpunit@11.5.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.14
664
url pkg:composer/phpunit/phpunit@11.5.15
purl pkg:composer/phpunit/phpunit@11.5.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.15
665
url pkg:composer/phpunit/phpunit@11.5.16
purl pkg:composer/phpunit/phpunit@11.5.16
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.16
666
url pkg:composer/phpunit/phpunit@11.5.17
purl pkg:composer/phpunit/phpunit@11.5.17
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.17
667
url pkg:composer/phpunit/phpunit@11.5.18
purl pkg:composer/phpunit/phpunit@11.5.18
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.18
668
url pkg:composer/phpunit/phpunit@11.5.19
purl pkg:composer/phpunit/phpunit@11.5.19
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.19
669
url pkg:composer/phpunit/phpunit@11.5.20
purl pkg:composer/phpunit/phpunit@11.5.20
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.20
670
url pkg:composer/phpunit/phpunit@11.5.21
purl pkg:composer/phpunit/phpunit@11.5.21
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.21
671
url pkg:composer/phpunit/phpunit@11.5.22
purl pkg:composer/phpunit/phpunit@11.5.22
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.22
672
url pkg:composer/phpunit/phpunit@11.5.23
purl pkg:composer/phpunit/phpunit@11.5.23
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.23
673
url pkg:composer/phpunit/phpunit@11.5.24
purl pkg:composer/phpunit/phpunit@11.5.24
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.24
674
url pkg:composer/phpunit/phpunit@11.5.25
purl pkg:composer/phpunit/phpunit@11.5.25
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.25
675
url pkg:composer/phpunit/phpunit@11.5.26
purl pkg:composer/phpunit/phpunit@11.5.26
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.26
676
url pkg:composer/phpunit/phpunit@11.5.27
purl pkg:composer/phpunit/phpunit@11.5.27
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.27
677
url pkg:composer/phpunit/phpunit@11.5.28
purl pkg:composer/phpunit/phpunit@11.5.28
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.28
678
url pkg:composer/phpunit/phpunit@11.5.29
purl pkg:composer/phpunit/phpunit@11.5.29
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.29
679
url pkg:composer/phpunit/phpunit@11.5.30
purl pkg:composer/phpunit/phpunit@11.5.30
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.30
680
url pkg:composer/phpunit/phpunit@11.5.31
purl pkg:composer/phpunit/phpunit@11.5.31
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.31
681
url pkg:composer/phpunit/phpunit@11.5.32
purl pkg:composer/phpunit/phpunit@11.5.32
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.32
682
url pkg:composer/phpunit/phpunit@11.5.33
purl pkg:composer/phpunit/phpunit@11.5.33
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.33
683
url pkg:composer/phpunit/phpunit@11.5.34
purl pkg:composer/phpunit/phpunit@11.5.34
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.34
684
url pkg:composer/phpunit/phpunit@11.5.35
purl pkg:composer/phpunit/phpunit@11.5.35
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.35
685
url pkg:composer/phpunit/phpunit@11.5.36
purl pkg:composer/phpunit/phpunit@11.5.36
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.36
686
url pkg:composer/phpunit/phpunit@11.5.37
purl pkg:composer/phpunit/phpunit@11.5.37
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.37
687
url pkg:composer/phpunit/phpunit@11.5.38
purl pkg:composer/phpunit/phpunit@11.5.38
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.38
688
url pkg:composer/phpunit/phpunit@11.5.39
purl pkg:composer/phpunit/phpunit@11.5.39
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.39
689
url pkg:composer/phpunit/phpunit@11.5.40
purl pkg:composer/phpunit/phpunit@11.5.40
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.40
690
url pkg:composer/phpunit/phpunit@11.5.41
purl pkg:composer/phpunit/phpunit@11.5.41
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.41
691
url pkg:composer/phpunit/phpunit@11.5.42
purl pkg:composer/phpunit/phpunit@11.5.42
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.42
692
url pkg:composer/phpunit/phpunit@11.5.43
purl pkg:composer/phpunit/phpunit@11.5.43
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.43
693
url pkg:composer/phpunit/phpunit@11.5.44
purl pkg:composer/phpunit/phpunit@11.5.44
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.44
694
url pkg:composer/phpunit/phpunit@11.5.45
purl pkg:composer/phpunit/phpunit@11.5.45
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.45
695
url pkg:composer/phpunit/phpunit@11.5.46
purl pkg:composer/phpunit/phpunit@11.5.46
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.46
696
url pkg:composer/phpunit/phpunit@11.5.47
purl pkg:composer/phpunit/phpunit@11.5.47
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.47
697
url pkg:composer/phpunit/phpunit@11.5.48
purl pkg:composer/phpunit/phpunit@11.5.48
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.48
698
url pkg:composer/phpunit/phpunit@11.5.49
purl pkg:composer/phpunit/phpunit@11.5.49
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@11.5.49
699
url pkg:composer/phpunit/phpunit@12.0.0
purl pkg:composer/phpunit/phpunit@12.0.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.0
700
url pkg:composer/phpunit/phpunit@12.0.1
purl pkg:composer/phpunit/phpunit@12.0.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.1
701
url pkg:composer/phpunit/phpunit@12.0.2
purl pkg:composer/phpunit/phpunit@12.0.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.2
702
url pkg:composer/phpunit/phpunit@12.0.3
purl pkg:composer/phpunit/phpunit@12.0.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.3
703
url pkg:composer/phpunit/phpunit@12.0.4
purl pkg:composer/phpunit/phpunit@12.0.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.4
704
url pkg:composer/phpunit/phpunit@12.0.5
purl pkg:composer/phpunit/phpunit@12.0.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.5
705
url pkg:composer/phpunit/phpunit@12.0.6
purl pkg:composer/phpunit/phpunit@12.0.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.6
706
url pkg:composer/phpunit/phpunit@12.0.7
purl pkg:composer/phpunit/phpunit@12.0.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.7
707
url pkg:composer/phpunit/phpunit@12.0.8
purl pkg:composer/phpunit/phpunit@12.0.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.8
708
url pkg:composer/phpunit/phpunit@12.0.9
purl pkg:composer/phpunit/phpunit@12.0.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.9
709
url pkg:composer/phpunit/phpunit@12.0.10
purl pkg:composer/phpunit/phpunit@12.0.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.0.10
710
url pkg:composer/phpunit/phpunit@12.1.0
purl pkg:composer/phpunit/phpunit@12.1.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.0
711
url pkg:composer/phpunit/phpunit@12.1.1
purl pkg:composer/phpunit/phpunit@12.1.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.1
712
url pkg:composer/phpunit/phpunit@12.1.2
purl pkg:composer/phpunit/phpunit@12.1.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.2
713
url pkg:composer/phpunit/phpunit@12.1.3
purl pkg:composer/phpunit/phpunit@12.1.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.3
714
url pkg:composer/phpunit/phpunit@12.1.4
purl pkg:composer/phpunit/phpunit@12.1.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.4
715
url pkg:composer/phpunit/phpunit@12.1.5
purl pkg:composer/phpunit/phpunit@12.1.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.5
716
url pkg:composer/phpunit/phpunit@12.1.6
purl pkg:composer/phpunit/phpunit@12.1.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.1.6
717
url pkg:composer/phpunit/phpunit@12.2.0
purl pkg:composer/phpunit/phpunit@12.2.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.0
718
url pkg:composer/phpunit/phpunit@12.2.1
purl pkg:composer/phpunit/phpunit@12.2.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.1
719
url pkg:composer/phpunit/phpunit@12.2.2
purl pkg:composer/phpunit/phpunit@12.2.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.2
720
url pkg:composer/phpunit/phpunit@12.2.3
purl pkg:composer/phpunit/phpunit@12.2.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.3
721
url pkg:composer/phpunit/phpunit@12.2.4
purl pkg:composer/phpunit/phpunit@12.2.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.4
722
url pkg:composer/phpunit/phpunit@12.2.5
purl pkg:composer/phpunit/phpunit@12.2.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.5
723
url pkg:composer/phpunit/phpunit@12.2.6
purl pkg:composer/phpunit/phpunit@12.2.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.6
724
url pkg:composer/phpunit/phpunit@12.2.7
purl pkg:composer/phpunit/phpunit@12.2.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.7
725
url pkg:composer/phpunit/phpunit@12.2.8
purl pkg:composer/phpunit/phpunit@12.2.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.8
726
url pkg:composer/phpunit/phpunit@12.2.9
purl pkg:composer/phpunit/phpunit@12.2.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.2.9
727
url pkg:composer/phpunit/phpunit@12.3.0
purl pkg:composer/phpunit/phpunit@12.3.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.0
728
url pkg:composer/phpunit/phpunit@12.3.1
purl pkg:composer/phpunit/phpunit@12.3.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.1
729
url pkg:composer/phpunit/phpunit@12.3.2
purl pkg:composer/phpunit/phpunit@12.3.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.2
730
url pkg:composer/phpunit/phpunit@12.3.3
purl pkg:composer/phpunit/phpunit@12.3.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.3
731
url pkg:composer/phpunit/phpunit@12.3.4
purl pkg:composer/phpunit/phpunit@12.3.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.4
732
url pkg:composer/phpunit/phpunit@12.3.5
purl pkg:composer/phpunit/phpunit@12.3.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.5
733
url pkg:composer/phpunit/phpunit@12.3.6
purl pkg:composer/phpunit/phpunit@12.3.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.6
734
url pkg:composer/phpunit/phpunit@12.3.7
purl pkg:composer/phpunit/phpunit@12.3.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.7
735
url pkg:composer/phpunit/phpunit@12.3.8
purl pkg:composer/phpunit/phpunit@12.3.8
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.8
736
url pkg:composer/phpunit/phpunit@12.3.9
purl pkg:composer/phpunit/phpunit@12.3.9
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.9
737
url pkg:composer/phpunit/phpunit@12.3.10
purl pkg:composer/phpunit/phpunit@12.3.10
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.10
738
url pkg:composer/phpunit/phpunit@12.3.11
purl pkg:composer/phpunit/phpunit@12.3.11
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.11
739
url pkg:composer/phpunit/phpunit@12.3.12
purl pkg:composer/phpunit/phpunit@12.3.12
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.12
740
url pkg:composer/phpunit/phpunit@12.3.13
purl pkg:composer/phpunit/phpunit@12.3.13
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.13
741
url pkg:composer/phpunit/phpunit@12.3.14
purl pkg:composer/phpunit/phpunit@12.3.14
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.14
742
url pkg:composer/phpunit/phpunit@12.3.15
purl pkg:composer/phpunit/phpunit@12.3.15
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.3.15
743
url pkg:composer/phpunit/phpunit@12.4.0
purl pkg:composer/phpunit/phpunit@12.4.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.0
744
url pkg:composer/phpunit/phpunit@12.4.1
purl pkg:composer/phpunit/phpunit@12.4.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.1
745
url pkg:composer/phpunit/phpunit@12.4.2
purl pkg:composer/phpunit/phpunit@12.4.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.2
746
url pkg:composer/phpunit/phpunit@12.4.3
purl pkg:composer/phpunit/phpunit@12.4.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.3
747
url pkg:composer/phpunit/phpunit@12.4.4
purl pkg:composer/phpunit/phpunit@12.4.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.4
748
url pkg:composer/phpunit/phpunit@12.4.5
purl pkg:composer/phpunit/phpunit@12.4.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.4.5
749
url pkg:composer/phpunit/phpunit@12.5.0
purl pkg:composer/phpunit/phpunit@12.5.0
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.0
750
url pkg:composer/phpunit/phpunit@12.5.1
purl pkg:composer/phpunit/phpunit@12.5.1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.1
751
url pkg:composer/phpunit/phpunit@12.5.2
purl pkg:composer/phpunit/phpunit@12.5.2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.2
752
url pkg:composer/phpunit/phpunit@12.5.3
purl pkg:composer/phpunit/phpunit@12.5.3
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.3
753
url pkg:composer/phpunit/phpunit@12.5.4
purl pkg:composer/phpunit/phpunit@12.5.4
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.4
754
url pkg:composer/phpunit/phpunit@12.5.5
purl pkg:composer/phpunit/phpunit@12.5.5
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.5
755
url pkg:composer/phpunit/phpunit@12.5.6
purl pkg:composer/phpunit/phpunit@12.5.6
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.6
756
url pkg:composer/phpunit/phpunit@12.5.7
purl pkg:composer/phpunit/phpunit@12.5.7
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:composer/phpunit/phpunit@12.5.7
757
url pkg:deb/debian/phpunit@1.1.1-2
purl pkg:deb/debian/phpunit@1.1.1-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@1.1.1-2
758
url pkg:deb/debian/phpunit@1.3.2-2
purl pkg:deb/debian/phpunit@1.3.2-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@1.3.2-2
759
url pkg:deb/debian/phpunit@3.2.16-1
purl pkg:deb/debian/phpunit@3.2.16-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@3.2.16-1
760
url pkg:deb/debian/phpunit@3.4.14-1
purl pkg:deb/debian/phpunit@3.4.14-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@3.4.14-1
761
url pkg:deb/debian/phpunit@3.6.10-1
purl pkg:deb/debian/phpunit@3.6.10-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@3.6.10-1
762
url pkg:deb/debian/phpunit@3.7.28-1~bpo70%2B1
purl pkg:deb/debian/phpunit@3.7.28-1~bpo70%2B1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@3.7.28-1~bpo70%252B1
763
url pkg:deb/debian/phpunit@4.2.6-2
purl pkg:deb/debian/phpunit@4.2.6-2
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@4.2.6-2
764
url pkg:deb/debian/phpunit@5.4.6-2~deb9u1
purl pkg:deb/debian/phpunit@5.4.6-2~deb9u1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
1
vulnerability VCID-ks7b-f17t-dfd4
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@5.4.6-2~deb9u1
765
url pkg:deb/debian/phpunit@7.5.6-1
purl pkg:deb/debian/phpunit@7.5.6-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@7.5.6-1
766
url pkg:deb/debian/phpunit@9.5.2-1
purl pkg:deb/debian/phpunit@9.5.2-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.5.2-1
767
url pkg:deb/debian/phpunit@9.6.7-1
purl pkg:deb/debian/phpunit@9.6.7-1
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.6.7-1
768
url pkg:deb/debian/phpunit@9.6.7-1?distro=trixie
purl pkg:deb/debian/phpunit@9.6.7-1?distro=trixie
is_vulnerable true
affected_by_vulnerabilities
0
vulnerability VCID-6bt7-kw89-v3dt
resource_url http://public2.vulnerablecode.io/packages/pkg:deb/debian/phpunit@9.6.7-1%3Fdistro=trixie
References
0
reference_url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-24765.json
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
url https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-24765.json
1
reference_url https://api.first.org/data/v1/epss?cve=CVE-2026-24765
reference_id
reference_type
scores
0
value 0.00106
scoring_system epss
scoring_elements 0.28803
published_at 2026-04-02T12:55:00Z
1
value 0.00106
scoring_system epss
scoring_elements 0.28853
published_at 2026-04-04T12:55:00Z
2
value 0.00123
scoring_system epss
scoring_elements 0.31476
published_at 2026-04-16T12:55:00Z
3
value 0.00123
scoring_system epss
scoring_elements 0.31441
published_at 2026-04-13T12:55:00Z
4
value 0.00123
scoring_system epss
scoring_elements 0.31422
published_at 2026-04-21T12:55:00Z
5
value 0.00123
scoring_system epss
scoring_elements 0.31454
published_at 2026-04-18T12:55:00Z
6
value 0.00123
scoring_system epss
scoring_elements 0.31478
published_at 2026-04-12T12:55:00Z
7
value 0.00123
scoring_system epss
scoring_elements 0.3152
published_at 2026-04-11T12:55:00Z
8
value 0.00123
scoring_system epss
scoring_elements 0.31516
published_at 2026-04-09T12:55:00Z
9
value 0.00123
scoring_system epss
scoring_elements 0.31487
published_at 2026-04-08T12:55:00Z
10
value 0.00123
scoring_system epss
scoring_elements 0.31434
published_at 2026-04-07T12:55:00Z
url https://api.first.org/data/v1/epss?cve=CVE-2026-24765
2
reference_url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-24765
reference_id
reference_type
scores
url https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-24765
3
reference_url https://github.com/sebastianbergmann/phpunit
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/sebastianbergmann/phpunit
4
reference_url https://github.com/sebastianbergmann/phpunit/commit/3141742e00620e2968d3d2e732d320de76685fda
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/
url https://github.com/sebastianbergmann/phpunit/commit/3141742e00620e2968d3d2e732d320de76685fda
5
reference_url https://github.com/sebastianbergmann/phpunit/commit/613d142f5a8471ca71623ce5ca2795f79248329e
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://github.com/sebastianbergmann/phpunit/commit/613d142f5a8471ca71623ce5ca2795f79248329e
6
reference_url https://github.com/sebastianbergmann/phpunit/releases/tag/10.5.63
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/
url https://github.com/sebastianbergmann/phpunit/releases/tag/10.5.63
7
reference_url https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.50
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/
url https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.50
8
reference_url https://github.com/sebastianbergmann/phpunit/releases/tag/12.5.8
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/
url https://github.com/sebastianbergmann/phpunit/releases/tag/12.5.8
9
reference_url https://github.com/sebastianbergmann/phpunit/releases/tag/8.5.52
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/
url https://github.com/sebastianbergmann/phpunit/releases/tag/8.5.52
10
reference_url https://github.com/sebastianbergmann/phpunit/releases/tag/9.6.33
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
2
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/
url https://github.com/sebastianbergmann/phpunit/releases/tag/9.6.33
11
reference_url https://github.com/sebastianbergmann/phpunit/security/advisories/GHSA-vvj3-c3rp-c85p
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
2
value HIGH
scoring_system generic_textual
scoring_elements
3
value Track
scoring_system ssvc
scoring_elements SSVCv2/E:N/A:N/T:T/P:M/B:A/M:M/D:T/2026-01-28T21:13:53Z/
url https://github.com/sebastianbergmann/phpunit/security/advisories/GHSA-vvj3-c3rp-c85p
12
reference_url https://lists.debian.org/debian-lts-announce/2026/02/msg00009.html
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://lists.debian.org/debian-lts-announce/2026/02/msg00009.html
13
reference_url https://nvd.nist.gov/vuln/detail/CVE-2026-24765
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://nvd.nist.gov/vuln/detail/CVE-2026-24765
14
reference_url https://owasp.org/www-project-top-10-ci-cd-security-risks/CICD-SEC-04-Poisoned-Pipeline-Execution
reference_id
reference_type
scores
0
value 7.8
scoring_system cvssv3.1
scoring_elements CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
1
value HIGH
scoring_system generic_textual
scoring_elements
url https://owasp.org/www-project-top-10-ci-cd-security-risks/CICD-SEC-04-Poisoned-Pipeline-Execution
15
reference_url https://bugzilla.redhat.com/show_bug.cgi?id=2433606
reference_id 2433606
reference_type
scores
url https://bugzilla.redhat.com/show_bug.cgi?id=2433606
16
reference_url https://github.com/advisories/GHSA-vvj3-c3rp-c85p
reference_id GHSA-vvj3-c3rp-c85p
reference_type
scores
0
value HIGH
scoring_system cvssv3.1_qr
scoring_elements
url https://github.com/advisories/GHSA-vvj3-c3rp-c85p
Weaknesses
0
cwe_id 502
name Deserialization of Untrusted Data
description The product deserializes untrusted data without sufficiently verifying that the resulting data will be valid.
1
cwe_id 937
name OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013.
2
cwe_id 1035
name OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities
description Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017.
Exploits
Severity_range_score7.0 - 8.9
Exploitability0.5
Weighted_severity8.0
Risk_score4.0
Resource_urlhttp://public2.vulnerablecode.io/vulnerabilities/VCID-6bt7-kw89-v3dt