Skip to content

Commit 62ae3f3

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 90d8785 commit 62ae3f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cm-schema/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,12 @@
104104
<distributionManagement>
105105
<repository>
106106
<id>cdh.releases.repo</id>
107-
<url>http://maven.jenkins.cloudera.com:8081/artifactory/cdh-staging-local</url>
107+
<url>https://maven.jenkins.cloudera.com:8081/artifactory/cdh-staging-local</url>
108108
<name>CDH Releases Repository</name>
109109
</repository>
110110
<snapshotRepository>
111111
<id>cdh.snapshots.repo</id>
112-
<url>http://maven.jenkins.cloudera.com:8081/artifactory/libs-snapshot-local</url>
112+
<url>https://maven.jenkins.cloudera.com:8081/artifactory/libs-snapshot-local</url>
113113
<name>CDH Snapshots Repository</name>
114114
</snapshotRepository>
115115
</distributionManagement>

0 commit comments

Comments
 (0)