From 8596cb608b90588fa0d4613e54dc4244e284b18e Mon Sep 17 00:00:00 2001 From: Jonathan Leitschuh Date: Fri, 19 Aug 2022 10:41:12 -0400 Subject: [PATCH] vuln-fix: Use HTTPS instead of HTTP to resolve dependencies (#1544) This fixes a security vulnerability in this project where the `build.gradle` files were configuring Gradle to resolve dependencies over HTTP instead of HTTPS. Weakness: CWE-829: Inclusion of Functionality from Untrusted Control Sphere Severity: High CVSSS: 8.1 Detection: OpenRewrite Reported-by: Jonathan Leitschuh Signed-off-by: Jonathan Leitschuh Bug-tracker: https://github.com/JLLeitschuh/security-research/issues/9 Co-authored-by: Moderne Co-authored-by: Moderne --- integration/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/build.gradle b/integration/build.gradle index 85e081cc78..5d8c2126ac 100644 --- a/integration/build.gradle +++ b/integration/build.gradle @@ -1,6 +1,6 @@ repositories { jcenter() - maven { url 'http://repository.jboss.org/nexus/content/groups/public' } + maven { url 'https://repository.jboss.org/nexus/content/groups/public' } } project.configurations {