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 3 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 gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ stdlibHttpVersion=2.10.1
stdlibTransactionVersion=1.8.0
wsSecurityDomVersion=3.0.1
wsSecurityCommonVersion=3.0.1
xmlSecVersion=3.0.2
xmlSecVersion=3.0.3

# Ballerinax Observer
observeVersion=1.2.0
Expand Down
2 changes: 1 addition & 1 deletion native/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies {
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.santuario:xmlsec:3.0.3'
dilanSachi marked this conversation as resolved.
Show resolved Hide resolved
implementation 'org.apache.wss4j:wss4j-ws-security-common:3.0.1'
compileOnly group: 'org.graalvm.nativeimage', name: 'svm', version: '22.2.0'
}
Expand Down
Loading