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

Fix CVE-2023-44483 Vulnerability in Ballerina SOAP Module #113

Merged
merged 7 commits into from
Nov 3, 2023
Merged
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
4 changes: 2 additions & 2 deletions ballerina/Ballerina.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ path = "./lib/wss4j-ws-security-common-3.0.1.jar"
[[platform.java17.dependency]]
groupId = "org.apache.santuario"
dilanSachi marked this conversation as resolved.
Show resolved Hide resolved
artifactId = "xmlsec"
version = "3.0.2"
path = "./lib/xmlsec-3.0.2.jar"
version = "3.0.3"
path = "./lib/xmlsec-3.0.3.jar"
2 changes: 1 addition & 1 deletion ballerina/Dependencies.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dependencies = [
[[package]]
org = "ballerina"
name = "http"
version = "2.10.3"
version = "2.10.1"
dependencies = [
{org = "ballerina", name = "auth"},
{org = "ballerina", name = "cache"},
Expand Down
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ stdlibHttpVersion=2.10.1
stdlibTransactionVersion=1.8.0
wsSecurityDomVersion=3.0.1
wsSecurityCommonVersion=3.0.1
xmlSecVersion=3.0.2
xmlSecVersion=3.0.3
guavaVersion=32.1.1-jre

# Ballerinax Observer
observeVersion=1.2.0
Expand Down
8 changes: 4 additions & 4 deletions native/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ dependencies {
checkstyle "com.puppycrawl.tools:checkstyle:${checkstylePluginVersion}"

implementation group: 'org.ballerinalang', name: 'ballerina-runtime', version: "${ballerinaLangVersion}"
implementation 'com.google.guava:guava:32.1.1-jre'
implementation 'org.apache.wss4j:wss4j-ws-security-dom:3.0.1'
implementation 'org.apache.santuario:xmlsec:3.0.2'
implementation 'org.apache.wss4j:wss4j-ws-security-common:3.0.1'
implementation group: 'com.google.guava', name: 'guava', version: "${guavaVersion}"
implementation group: 'org.apache.wss4j', name: 'wss4j-ws-security-dom', version: "${wsSecurityDomVersion}"
implementation group: 'org.apache.wss4j', name: 'wss4j-ws-security-common', version: "${wsSecurityCommonVersion}"
implementation group: 'org.apache.santuario', name: 'xmlsec', version: "${xmlSecVersion}"
compileOnly group: 'org.graalvm.nativeimage', name: 'svm', version: '22.2.0'
}

Expand Down