Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
vuln-fix: Use HTTPS instead of HTTP to resolve deps CVE-2021-26291
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
JLLeitschuh and TeamModerne committed Jul 1, 2022
1 parent 9b2b6c4 commit 61f6b76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -359,12 +359,12 @@
</releases>
<snapshots />
<id>Codehaus Snapshots</id>
<url>http://nexus.codehaus.org/snapshots</url>
<url>https://nexus.codehaus.org/snapshots</url>
</repository>
<repository>
<id>logging.rc</id>
<name>logging services release candidates</name>
<url>http://people.apache.org/builds/logging/repo</url>
<url>https://people.apache.org/builds/logging/repo</url>
</repository>
</repositories>
<pluginRepositories>
Expand All @@ -374,7 +374,7 @@
</releases>
<snapshots />
<id>Codehaus Snapshots</id>
<url>http://nexus.codehaus.org/snapshots</url>
<url>https://nexus.codehaus.org/snapshots</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
Expand Down

0 comments on commit 61f6b76

Please sign in to comment.