aur-malware-check-git

maintainer dreieck · 0 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged Builds from the project's own GitHub repository (lenucksi/aur-malware-check); the only non-standard element is a local bundled shell script 'aur-malware-check.sh' with a pinned sha256 checksum, which is normal AUR packaging practice and not fetched from a remote untrusted host at build time.

Triggered rules

LOW Few votes, recently uploaded zero_votes_recent

Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.

LOW AI review downgraded a static finding llm_review

The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 70%): Builds from the project's own GitHub repository (lenucksi/aur-malware-check); the only non-standard element is a local bundled shell script 'aur-malware-check.sh' with a pinned sha256 checksum, which is normal AUR packaging practice and not fetched from a remote untrusted host at build time.

1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM source=() URL on a non-standard host source_untrusted_domain

One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).

  • PKGBUILD:42 "${_gitname}::git+https://${_githost}/${_gituser}/${_gitname}.git"

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: dreieck (https://aur.archlinux.org/account/dreieck)
2
3_pyname="aur_check"
4_gitname="aur-malware-check"
5_pkgname="aur-malware-check"
6pkgname="${_pkgname}-git"
7pkgver=5.3.0.r109.20260707.9023c17
8pkgrel=1
9pkgdesc="Detection tools for the June 2026 atomic-lockfile AUR supply-chain attack and maybe other comprimised AUR packages. Consolidated from community Gists. Having this tool reporting nothing does not mean you are safe!"
10arch=(
11 'any'
12)
13_githost='github.com'
14_gituser='lenucksi'
15url="https://${_githost}/${_gituser}/${_gitname}"
16license=("GPL-3.0-only")
17depends=(
18 'python>=3.14'
19)
20makedepends=(
21 'git'
22)
23optdepends=(
24 "${_pkgname}-pacman-hook: To invoke the check script at each pacman installation." # See https://github.com/lenucksi/aur-malware-check/tree/master/integration/pacman-hook if anyone wants to build a package containing the hook.
25 "${_pkgname}-systemd: Systemd service for continuous monitoring." # See https://github.com/lenucksi/aur-malware-check/tree/master/integration/systemd if anyone wants to build a package containing this service.
26)
27checkdepends=()
28provides=(
29 "aur-check=${pkgver}" # Because there is the AUR package 'aur-check' (https://aur.archlinux.org/packages/aur-check).
30 "${_pkgname}=${pkgver}"
31 "python-${_pyname}=${pkgver}"
32 "python-${_pyname}-git=${pkgver}"
33)
34conflicts=(
35 "aur-check" # Because there is the AUR package 'aur-check' (https://aur.archlinux.org/packages/aur-check).
36 "${_pkgname}"
37 "python-${_pyname}"
38 "python-${_pyname}-git"
39)
40
41source=(
42 "${_gitname}::git+https://${_githost}/${_gituser}/${_gitname}.git"
43 "aur-malware-check.sh"
44)
45sha256sums=(
46 'SKIP' # Main upstream source
47 'df9ae735e2e3681c4c94f5d188437599ab8469cbd6b1798bd7deb452b353097e' # aur-malware-check.sh
48)
49
50prepare() {
51 cd "${srcdir}/${_pkgname}"
52 git log > "${srcdir}/git.log"
53}
54
55pkgver() {
56 cd "${srcdir}/${_pkgname}"
57
58 _ver="$(git describe --tags | sed -E -e 's|^[vV]||' -e 's|\-g[0-9a-f]*$||' | tr '-' '+')"
59 _rev="$(git rev-list --count HEAD)"
60 _date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
61 _hash="$(git rev-parse --short HEAD)"
62
63 if [ -z "${_ver}" ]; then
64 error "Version could not be determined."
65 return 1
66 else
67 printf '%s' "${_ver}.r${_rev}.${_date}.${_hash}"
68 fi
69}
70
71package() {
72 cd "${srcdir}/${_pkgname}"
73
74 local _pysitepkgdir="$(python -c 'import sysconfig; print(sysconfig.get_paths()["purelib"])')"
75 install -dvm755 "${pkgdir}/${_pysitepkgdir}"
76 cp -rv aur_check "${pkgdir}/${_pysitepkgdir}"/
77
78 install -dvm755 "${pkgdir}/usr/lib/aur_check"
79 cp -rv data "${pkgdir}/usr/lib/aur_check"/
80
81 install -Dvm755 "${srcdir}/aur-malware-check.sh" "${pkgdir}/usr/bin/aur-malware-check"
82
83 _docfiles=(
84 "${srcdir}/git.log"
85 README.md
86 CHANGELOG.md
87 DEVELOPING.md
88 SOURCES.md
89 )
90 _docdirs=()
91 _manfiles=()
92 _infofiles=()
93 _licensefiles=(
94 LICENSE
95 )
96 printf '%s\n' " --> installing documentation ..."
97 for _docfile in "${_docfiles[@]}"; do
98 install -D -v -m644 "${_docfile}" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_docfile}")"
99 done
100 for _docdir in "${_docdirs[@]}"; do
101 cp -rv "${_docdir}" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_docdir}")"
102 done
103 for _manfile in "${_manfiles[@]}"; do
104 _section="$(basename "${_manfile}" .gz | sed -E -e 's|^.*\.([^.]*)$|\1|')"
105 install -D -v -m644 "docs/build/man/${_manfile}" "${pkgdir}/usr/share/man/man${_section}/$(basename "${_manfile}")"
106 done
107 for _infofile in "${_infofiles[@]}"; do
108 install -D -v -m644 "${_infofile}" "${pkgdir}/usr/share/info/$(basename "${_infofile}")"
109 done
110 printf '%s\n' " --> installing license ..."
111 for _licensefile in "${_licensefiles[@]}"; do
112 install -D -v -m644 "${_licensefile[@]}" "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")"
113 ln -svr "${pkgdir}/usr/share/licenses/${pkgname}/$(basename "${_licensefile}")" "${pkgdir}/usr/share/doc/${_pkgname}/$(basename "${_licensefile}")"
114 done
115}
116
117

Scan history

Scanned at (UTC)SeverityRules
2026-08-03 00:08:14 LOW 3
2026-08-02 00:16:08 LOW 3
2026-08-01 00:11:18 LOW 3
2026-07-31 00:14:10 LOW 3
2026-07-30 17:26:41 LOW 3
2026-07-30 17:15:21 MEDIUM 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion