From 818f1feb5bc2916e023c75f548c1b45401f602aa Mon Sep 17 00:00:00 2001 From: Jonathan Leitschuh Date: Thu, 21 Jul 2022 15:39:39 +0000 Subject: [PATCH] vuln-fix: Use HTTPS instead of HTTP to resolve dependencies 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 --- 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 {