Skip to content

Commit

Permalink
vuln-fix: Use HTTPS instead of HTTP to resolve dependencies
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Jonathan Leitschuh <[email protected]>

Bug-tracker: JLLeitschuh/security-research#9

Co-authored-by: Moderne <[email protected]>
  • Loading branch information
JLLeitschuh and TeamModerne committed Jul 21, 2022
1 parent 40461e4 commit 44b8b61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openmrs-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ android {
}

repositories {
maven { url 'http://yanzm.github.io/MaterialTabHost/repository' }
maven { url 'https://yanzm.github.io/MaterialTabHost/repository' }
mavenCentral()
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
Expand Down

0 comments on commit 44b8b61

Please sign in to comment.