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

Commit

Permalink
Fix security issue CVE-2023-6378
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalijr2 committed Dec 20, 2023
1 parent 88ad670 commit c27c097
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.1.1 - 2023-12-20
### Security
- CVE-2023-6378: A serialization vulnerability in logback receiver component part of logback version 1.4.11 allows an attacker to mount a Denial-Of-Service attack by sending poisoned data.

## 1.1.0 - 2023-12-20
### Added
- The proxy feature
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@
<mockito.version>5.8.0</mockito.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<revision>1.1.0</revision>
<revision>1.1.1</revision>
<sha1/>
</properties>
<scm>
Expand Down
10 changes: 10 additions & 0 deletions spring-boot-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,16 @@
<groupId>org.springframework.boot</groupId>
<version>3.2.0</version>
</dependency>
<dependency>
<!--
CVE-2023-6378: A serialization vulnerability in
logback receiver component part of logback version 1.4.11 allows an attacker
to mount a Denial-Of-Service attack by sending poisoned data.
-->
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.4.14</version>
</dependency>
<dependency>
<artifactId>spring-boot-configuration-processor</artifactId>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit c27c097

Please sign in to comment.