• CubitOom@infosec.pub
    link
    fedilink
    English
    arrow-up
    1
    ·
    il y a 1 mois

    check to see if you have any of the matching packages.

    pacman -Qm | awk '{print $1}' | sort > /tmp/local-aur-pkgs.txt
    curl -s https://gist.githubusercontent.com/Kidev/59bf9f5fb53ab5eee99f19a6a2fc3992/raw/.../aur_check.sh \
      | grep -oP '(?<=")[^"]+(?=")' | sort > /tmp/gist-infected-pkgs.txt
    comm -12 /tmp/local-aur-pkgs.txt /tmp/gist-infected-pkgs.txt
    

    also

    curl -s https://cscs.pastes.sh/raw/aurvulnlist20260611.txt | sort > /tmp/updated-infected-pkgs.txt
    comm -12 /tmp/local-aur-pkgs.txt /tmp/updated-infected-pkgs.txt