Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0d60b0b10eae
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d92de0eb1893
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 1, 2020

  1. adobe-reader: add knownVulnerabilities

    We should really avoid that people unknowingly use Adobe Reader, it
    has literally tens of known high-score code execution vulnerabilities,
    probably exploited in the wild.
    
    (cherry picked from commit 4b07b00)
    danieldk committed Sep 1, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    jluttine Jaakko Luttinen
    Copy the full SHA
    0ee482c View commit details

Commits on Sep 3, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d92de0e View commit details
Showing with 4 additions and 0 deletions.
  1. +4 −0 pkgs/applications/misc/adobe-reader/default.nix
4 changes: 4 additions & 0 deletions pkgs/applications/misc/adobe-reader/default.nix
Original file line number Diff line number Diff line change
@@ -28,5 +28,9 @@ stdenv.mkDerivation {
description = "Adobe Reader, a viewer for PDF documents";
homepage = http://www.adobe.com/products/reader;
license = stdenv.lib.licenses.unfree;
knownVulnerabilities = [
"Numerous unresolved vulnerabilities"
"See: https://www.cvedetails.com/product/497/Adobe-Acrobat-Reader.html?vendor_id=53"
];
};
}