Skip to content

Commit b45a551

Browse files
fix(security): patch CVEs in playground modules - thymeleaf SSTI, actuator auth bypass, logback CVE-2026-1225
- thymeleaf + thymeleaf-spring6: 3.1.3.RELEASE → 3.1.4.RELEASE (SSTI fix, all 3 thymeleaf playground modules) - spring-boot-starter-actuator: 3.5.6/3.5.5 → 3.5.12 (auth bypass fix) - logback-classic: 1.5.19 → 1.5.32 (CVE-2026-1225 ACE fix, resolves #228) Closes #228
1 parent 5efb815 commit b45a551

3 files changed

Lines changed: 25 additions & 5 deletions

File tree

  • playground
    • kinde-springboot-pkce-client-example
    • kinde-springboot-starter-example
    • kinde-springboot-thymeleaf-full-example

playground/kinde-springboot-pkce-client-example/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@
2727
<artifactId>spring-boot-starter-thymeleaf</artifactId>
2828
<version>3.5.5</version>
2929
</dependency>
30+
<dependency>
31+
<groupId>org.thymeleaf</groupId>
32+
<artifactId>thymeleaf</artifactId>
33+
<version>3.1.4.RELEASE</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.thymeleaf</groupId>
37+
<artifactId>thymeleaf-spring6</artifactId>
38+
<version>3.1.4.RELEASE</version>
39+
</dependency>
3040
<dependency>
3141
<groupId>org.springframework.boot</groupId>
3242
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>

playground/kinde-springboot-starter-example/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>org.springframework.boot</groupId>
3434
<artifactId>spring-boot-starter-actuator</artifactId>
35-
<version>3.5.6</version>
35+
<version>3.5.12</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>org.springframework.boot</groupId>
@@ -47,12 +47,12 @@
4747
<dependency>
4848
<groupId>org.thymeleaf</groupId>
4949
<artifactId>thymeleaf</artifactId>
50-
<version>3.1.3.RELEASE</version>
50+
<version>3.1.4.RELEASE</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>org.thymeleaf</groupId>
5454
<artifactId>thymeleaf-spring6</artifactId>
55-
<version>3.1.3.RELEASE</version>
55+
<version>3.1.4.RELEASE</version>
5656
</dependency>
5757
<dependency>
5858
<groupId>org.springframework.boot</groupId>
@@ -73,7 +73,7 @@
7373
<groupId>ch.qos.logback</groupId>
7474
<artifactId>logback-classic</artifactId>
7575
<scope>runtime</scope>
76-
<version>1.5.19</version>
76+
<version>1.5.32</version>
7777
</dependency>
7878

7979
<dependency>

playground/kinde-springboot-thymeleaf-full-example/pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>org.springframework.boot</groupId>
3030
<artifactId>spring-boot-starter-actuator</artifactId>
31-
<version>3.5.5</version>
31+
<version>3.5.12</version>
3232
</dependency>
3333

3434
<dependency>
@@ -61,6 +61,16 @@
6161
<artifactId>spring-boot-starter-thymeleaf</artifactId>
6262
<version>3.5.5</version>
6363
</dependency>
64+
<dependency>
65+
<groupId>org.thymeleaf</groupId>
66+
<artifactId>thymeleaf</artifactId>
67+
<version>3.1.4.RELEASE</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.thymeleaf</groupId>
71+
<artifactId>thymeleaf-spring6</artifactId>
72+
<version>3.1.4.RELEASE</version>
73+
</dependency>
6474
<dependency>
6575
<groupId>org.springframework.boot</groupId>
6676
<artifactId>spring-boot-devtools</artifactId>

0 commit comments

Comments
 (0)