Skip to content

Commit 7ca85cc

Browse files
authored
Updated commons-lang3 to address CVE (#297)
1 parent 16bc812 commit 7ca85cc

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

account-service/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ dependencies {
3232
}
3333
implementation 'ch.qos.logback:logback-classic:1.5.18' // Ensure compatibility
3434

35+
// Override commons-lang3 to fix CVE-2025-48924
36+
implementation 'org.apache.commons:commons-lang3:3.18.0' // Latest version to fix CVE-2025-48924
37+
3538
testImplementation 'org.springframework.boot:spring-boot-starter-test'
3639
}
3740

position-service/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ dependencies {
3030
}
3131
implementation 'ch.qos.logback:logback-classic:1.5.18' // Ensure compatibility
3232

33+
// Override commons-lang3 to fix CVE-2025-48924
34+
implementation 'org.apache.commons:commons-lang3:3.18.0' // Latest version to fix CVE-2025-48924
35+
3336
testImplementation 'org.springframework.boot:spring-boot-starter-test'
3437
}
3538

trade-processor/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ dependencies {
4242
}
4343
implementation 'ch.qos.logback:logback-classic:1.5.18' // Ensure compatibility
4444

45+
// Override commons-lang3 to fix CVE-2025-48924
46+
implementation 'org.apache.commons:commons-lang3:3.18.0' // Latest version to fix CVE-2025-48924
47+
4548
testImplementation 'org.springframework.boot:spring-boot-starter-test'
4649
}
4750

trade-service/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ dependencies {
4747
// Override okhttp and okio versions to address vulnerabilities
4848
implementation 'com.squareup.okhttp3:okhttp:4.12.0' // Suggested version
4949

50+
// Override commons-lang3 to fix CVE-2025-48924
51+
implementation 'org.apache.commons:commons-lang3:3.18.0' // Latest version to fix CVE-2025-48924
52+
5053
testImplementation 'org.springframework.boot:spring-boot-starter-test'
5154
}
5255

0 commit comments

Comments
 (0)