-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SECURITY] Releases are built/executed/released in the context of insecure/untrusted code #301
Comments
Oh thanks. Note that this is only for the project's own build (plugins like JMH) and wouldn't impact user's, but definitely worth fixing. |
@ben-manes , do you think it is worth applying something like https://github.com/signalapp/gradle-witness to validate the checksums of the downloaded artifacts? |
There are already checksum files generated on the repositories that the dependency manager should verify with, so I don't think that plugin would help? For example, |
Eh, I should probably test it, but it was not clear if Gradle verifies them: https://discuss.gradle.org/t/is-there-an-option-to-validate-downloaded-artifacts-via-the-sha1-checksum/6054/3 |
Gradle does not verify checksums. They do use checksums to see if they need to pull an updated version from the repository. This could impact users since any maliciously downloaded code is executing in the context where the releases are produced. The malicious code could have maliciously compromised the build artifacts before upload. Public DisclosureOption 1: File for a CVEA project maintainer for this project should probably file for a CVE number to inform the public about this vulnerability in the build for this project. The goal is to inform the public that there was a potential for published build artifacts to have been maliciously compromised in earlier releases. If a maintainer on this project works for or is associated with a CNA, please have them file it with them: Otherwise, an open source CVE should be filed for here: Option 2: Manually validate the release artifactsIf this project's build is fully reproducible. An alternative to filing for a CVE is to go back and build the earlier releases (with the HTTPS patch applied) to confirm the artifacts were not tampered when they were built. This can be done by comparing the hashes of the artifacts built locally with the ones published. If the hashes of all previous artifacts match those that are published, you can safely assume that the releases were not tampered with. Again, this assumes that the build if fully reproducible and will require significantly more work. |
The build is reproducible and everything appears to match. |
Just in case: the checksums you list are located on the remote site, and they can be compromised. So the proper way to approach it is to declare expected checksums and/or expected GPG keys at use side (e.g. how MacPorts , NixOS, Brew, and so on package managers declare expected sums). In other words, Maven should enable users to write like:
Then, the downloaded file should be compared with user-provided checksum. I see Caffeine does not have much of the (runtime) dependencies, however every dependency matters. |
Unfortunately Maven's workaround for dependencies is the Central, Spring, and jitpack repositories have good enforcement policies that make it easy to track the history of dependencies. The most unsafe is bintray since they allow stealing a coordinate and by their very lax rules. Sadly none seem to instruct the http clients to redirect to https. So the ecosystem is in a bit of a bad state I guess. |
Of course I meant gradle-witness, thanks for pointing that out. |
The https://github.com/signalapp/Signal-Android https://github.com/signalapp/gradle-witness
AWESOME! That takes the requirement to disclose off the table. Glad you are in the clear. |
Reason: ben-manes/caffeine#301 Signed-off-by: Cai Yufei (INST/ECS1) <yufei.cai@bosch-si.com>
CWE-829: Inclusion of Functionality from Untrusted Control Sphere
CWE-494: Download of Code Without Integrity Check
The build files indicate that this project is resolving dependencies over HTTP instead of HTTPS. Any of these artifacts could have been MITM to maliciously compromise them and infect the build artifacts that were produced. Additionally, if any of these JARs or other dependencies were compromised, any developers using these could continue to be infected past updating to fix this.
This vulnerability has a CVSS v3.0 Base Score of 8.1/10
https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator?vector=AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
This isn't just theoretical
POC code has existed since 2014 to maliciously compromise a JAR file inflight.
See:
MITM Attacks Increasingly Common
See:
Source Locations
caffeine/build.gradle
Line 11 in c297a29
The text was updated successfully, but these errors were encountered: