Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CCD-3359: CVE-2022-22978: ccd-message-publisher #185

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

ext['spring-framework.version'] = '5.3.20'
ext['spring-security.version'] = '5.4.5'
ext['spring-security.version'] = '5.7.1'
ext['log4j2.version'] = '2.17.1'
ext['jackson.version'] = '2.13.2'

Expand Down Expand Up @@ -279,8 +279,9 @@ dependencies {
exclude group: 'org.simpleframework', module: 'simple-xml' //CVE-2017-1000190
exclude group: 'org.nanohttpd', module: 'nanohttpd' //CVE-2020-13697
}
//CVE-2021-22119
implementation (group: 'org.springframework.security', name:'spring-security-crypto', 'version':'5.4.7')
//CVE-2022-22978
implementation (group: 'org.springframework.security', name:'spring-security-crypto', 'version':'5.7.1')
implementation group: 'org.springframework.security', name: 'spring-security-rsa', version: '1.0.11.RELEASE'
// CVE-2021-43797
implementation group: 'io.netty', name:'netty-buffer', version: versions.netty
implementation group: 'io.netty', name:'netty-codec', version: versions.netty
Expand Down
6 changes: 3 additions & 3 deletions charts/ccd-message-publisher/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apiVersion: v2
description: A Helm chart for the HMCTS CCD Message Publisher
name: ccd-message-publisher
home: https://github.com/hmcts/ccd-message-publisher
version: 0.1.3
version: 0.1.4
maintainers:
- name: HMCTS CCD Dev Team
dependencies:
- name: java
version: 3.7.3
repository: '@hmctspublic'
repository: 'https://hmctspublic.azurecr.io/helm/v1/repo/'
- name: servicebus
version: 0.3.1
repository: '@hmctspublic'
repository: 'https://hmctspublic.azurecr.io/helm/v1/repo/'
condition: servicebus.enabled
11 changes: 10 additions & 1 deletion config/owasp/suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,18 @@
<cve>CVE-2022-22968</cve>
<cve>CVE-2022-22970</cve>
<cve>CVE-2022-22976</cve>
<cve>CVE-2022-22978</cve>
<cve>CVE-2022-22950</cve>
</suppress>
<!--End of temporary suppression section -->

<suppress>
<notes><![CDATA[
file name: spring-security-rsa-1.0.11.RELEASE.jar
The same CVE has been fixed for spring-security with version 5.7.1,
but still pending for the file stated here. We need detailed suppression to target the rsa file.
]]></notes>
<packageUrl regex="true">^pkg:maven/org\.springframework\.security/spring\-security\-rsa@.*$</packageUrl>
<cve>CVE-2022-22978</cve>
</suppress>

</suppressions>