Skip to content
This repository was archived by the owner on Aug 2, 2024. It is now read-only.

[JUnit] Fix multiple vulns #52

Merged
merged 1 commit into from
Jun 27, 2022

Conversation

viviengaetan
Copy link
Contributor

When a package as multiples vulnerabilities, the junit format only report one which is not the intended use case.

As reported here: #23 (comment)

Sample with the following composer.json

{
  "require": {
    "guzzlehttp/guzzle": "7.4.2"
  }
}

Currently the result is the following:

./local-php-security-checker --path=test/ --format=junit
  <testsuites name="Symfony Security Check Report">
      <testsuite package="" errors="0" failures="1" tests="1">
          <testcase name="guzzlehttp/guzzle (7.4.2)" classname="packages">
              <failure>CVE-2022-31091 - Change in port should be considered a change in origin (https://github.com/guzzle/guzzle/security/advisories/GHSA-q559-8m2m-g699)</failure>
          </testcase>
      </testsuite>
  </testsuites>

With the modification I did:

./local-php-security-checker --path=test/ --format=junit
  <testsuites name="Symfony Security Check Report">
      <testsuite package="" errors="0" failures="1" tests="1">
          <testcase name="guzzlehttp/guzzle (7.4.2)" classname="packages">
              <failure>CVE-2022-29248 - Cross-domain cookie leakage (https://github.com/guzzle/guzzle/security/advisories/GHSA-cwmx-hcrq-mhc3)</failure>
              <failure>CVE-2022-31042 - Failure to strip the Cookie header on change in host or HTTP downgrade (https://github.com/guzzle/guzzle/security/advisories/GHSA-f2wf-25xc-69c9)</failure>
              <failure>CVE-2022-31043 - Fix failure to strip Authorization header on HTTP downgrade (https://github.com/guzzle/guzzle/security/advisories/GHSA-w248-ffj2-4v5q)</failure>
              <failure>CVE-2022-31090 - CURLOPT_HTTPAUTH option not cleared on change of origin (https://github.com/guzzle/guzzle/security/advisories/GHSA-25mq-v84q-4j7r)</failure>
              <failure>CVE-2022-31091 - Change in port should be considered a change in origin (https://github.com/guzzle/guzzle/security/advisories/GHSA-q559-8m2m-g699)</failure>
          </testcase>
      </testsuite>
  </testsuites>

@viviengaetan viviengaetan mentioned this pull request Jun 27, 2022
@viviengaetan viviengaetan marked this pull request as ready for review June 27, 2022 15:00
@fabpot fabpot merged commit 9150955 into fabpot:main Jun 27, 2022
@fabpot
Copy link
Owner

fabpot commented Jun 27, 2022

Thank you

@dmarcos89
Copy link

Thanks a lot @viviengaetan! That was quick 😄
@fabpot Any chance we can tag this as 2.0.4? Or what's the release frequency?
Cheers

@fabpot
Copy link
Owner

fabpot commented Jun 28, 2022

@dmarcos89 Released now.

jrfnl added a commit to PHPCSStandards/composer-installer that referenced this pull request Jul 25, 2022
@viviengaetan viviengaetan deleted the fix/junit_multiple_vulns branch April 14, 2024 20:31
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants