Skip to content
Open
Changes from all 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
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]>
  • Loading branch information
JLLeitschuh and TeamModerne committed Jul 14, 2022
commit 0d8f935a9d1cf48900c6e15ee469532d91b4c236
4 changes: 2 additions & 2 deletions cm-schema/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,12 @@
<distributionManagement>
<repository>
<id>cdh.releases.repo</id>
<url>http://maven.jenkins.cloudera.com:8081/artifactory/cdh-staging-local</url>
<url>https://maven.jenkins.cloudera.com:8081/artifactory/cdh-staging-local</url>
<name>CDH Releases Repository</name>
</repository>
<snapshotRepository>
<id>cdh.snapshots.repo</id>
<url>http://maven.jenkins.cloudera.com:8081/artifactory/libs-snapshot-local</url>
<url>https://maven.jenkins.cloudera.com:8081/artifactory/libs-snapshot-local</url>
<name>CDH Snapshots Repository</name>
</snapshotRepository>
</distributionManagement>
Expand Down