Skip to content

Commit 02b8975

Browse files
vuln-fix: Use HTTPS instead of HTTP to resolve deps CVE-2021-26291
This fixes a security vulnerability in this project where the `pom.xml` files were configuring Maven to resolve dependencies over HTTP instead of HTTPS. Weakness: CWE-829: Inclusion of Functionality from Untrusted Control Sphere Severity: High CVSSS: 8.1 Detection: CodeQL & OpenRewrite (https://public.moderne.io/recipes/org.openrewrite.maven.security.UseHttpsForRepositories) Reported-by: Jonathan Leitschuh <[email protected]> Signed-off-by: Jonathan Leitschuh <[email protected]> Bug-tracker: JLLeitschuh/security-research#8 Co-authored-by: Moderne <[email protected]>
1 parent e0b6292 commit 02b8975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
</pluginRepository>
5151
<pluginRepository>
5252
<id>insecure.glassfish.org</id>
53-
<url>http://maven.glassfish.org</url>
53+
<url>https://maven.glassfish.org</url>
5454
<releases>
5555
<enabled>false</enabled>
5656
</releases>

0 commit comments

Comments
 (0)