coolvlviewer-bin

maintainer toastercup · 5 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged The PKGBUILD downloads a prebuilt binary installer from sldev.free.fr, which is the official (though personal/hobbyist-style) distribution host for the Cool VL Viewer project — a long-standing third-party Second Life viewer maintained by Henri Beauchamp. The domain is the project's canonical upstream, not a random personal host. However, the binary is executed directly during build() (chmod +x + run as installer), and only a SHA1 checksum is used for integrity verification. SHA1 is cryptographically weak and insufficient for verifying an executed binary. The combination of: (1) a prebuilt binary installer being executed, (2) hosted on a free-tier personal domain (free.fr) with no TLS in the source URL (http://), and (3) only SHA1 integrity checking, constitutes a genuine medium-severity supply-chain risk. If the host were compromised or the binary silently replaced, the weak checksum provides little protection. This is not clearly malicious, but it is a real concern for an executed binary package.

Triggered rules

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:50 "http://sldev.free.fr/binaries/CoolVLViewer-${pkgver}-Linux-x86_64-Setup"
MEDIUM AI review llm_review

An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads a prebuilt binary installer from sldev.free.fr, which is the official (though personal/hobbyist-style) distribution host for the Cool VL Viewer project — a long-standing third-party Second Life viewer maintained by Henri Beauchamp. The domain is the project's canonical upstream, not a random personal host. However, the binary is executed directly during build() (chmod +x + run as installer), and only a SHA1 checksum is used for integrity verification. SHA1 is cryptographically weak and insufficient for verifying an executed binary. The combination of: (1) a prebuilt binary installer being executed, (2) hosted on a free-tier personal domain (free.fr) with no TLS in the source URL (http://), and (3) only SHA1 integrity checking, constitutes a genuine medium-severity supply-chain risk. If the host were compromised or the binary silently replaced, the weak checksum provides little protection. This is not clearly malicious, but it is a real concern for an executed binary package.

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Alex Tharp <alex at toastercup dot io>
2_appname="coolvlviewer"
3pkgname="${_appname}-bin"
4provides=("${_appname}")
5conflicts=("${_appname}")
6pkgver=1.32.2.44
7pkgrel=1
8pkgdesc="A third-party viewer for Second Life and OpenSim grids"
9url="http://sldev.free.fr"
10license=("GPL-2.0-or-later")
11arch=("x86_64")
12depends=(
13 "apr-util"
14 "atk"
15 "gconf"
16 "glib2>=2.32"
17 "glu"
18 "lib32-libidn"
19 "lib32-libsndfile"
20 "lib32-util-linux"
21 "lib32-zlib"
22 "libcups"
23 "libgl"
24 "libidn"
25 "libxcomposite"
26 "libxcrypt-compat"
27 "libxcursor"
28 "libxrandr"
29 "libxss"
30 "libxtst"
31 "mesa"
32 "pangox-compat"
33 "sdl"
34)
35optdepends=(
36 "alsa-lib: for ALSA support"
37 "gst-plugins-bad: for video support"
38 "gst-plugins-good: for video support"
39 "gst-plugins-ugly: for video support"
40 "lib32-alsa-lib: for ALSA support"
41 "lib32-freealut: for OpenAL support"
42 "lib32-libidn11: for voice support"
43 "libpulse: for PulseAudio support"
44 "nvidia-utils: for NVIDIA support"
45 "pepper-flash: for inworld Flash support"
46 "wine: for SLVoice support"
47)
48install="${_appname}.install"
49source=(
50 "http://sldev.free.fr/binaries/CoolVLViewer-${pkgver}-Linux-x86_64-Setup"
51 "${_appname}.desktop"
52)
53sha1sums=(
54 "1deb49fb1e89b2c61ddce1a5f556b69a27418af0"
55 "314763ee16ca2e2224c402ec18bf5b24157ce8b8"
56)
57
58build() {
59 cd "${srcdir}"
60 chmod +x "CoolVLViewer-${pkgver}-Linux-x86_64-Setup"
61
62 ./CoolVLViewer-${pkgver}-Linux-x86_64-Setup --mode silent --destination "${srcdir}/${_appname}/"
63}
64
65package() {
66 install -D -m644 "${srcdir}/${_appname}.desktop" "${pkgdir}/usr/share/applications/${_appname}.desktop"
67 install -D -m755 "${srcdir}/${_appname}/cvlv_icon.png" "${pkgdir}/usr/share/pixmaps/clvl_icon.png"
68 install -D -m644 "${srcdir}/${_appname}/licenses.txt" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
69
70 # Move Data to Destination Directory
71 install -d "${pkgdir}/opt/"
72 mv "${_appname}/" "${pkgdir}/opt/"
73
74 # Change Permissions of files to root:games
75 chown -R root:games "${pkgdir}/opt/${_appname}"
76 chmod -R g+rw "${pkgdir}/opt/${_appname}"
77
78 # Make Binary Group-Executable
79 chmod g+x "${pkgdir}/opt/${_appname}/cool_vl_viewer"
80
81 install -d "${pkgdir}/usr/bin"
82 ln -s "/opt/${_appname}/cool_vl_viewer" "${pkgdir}/usr/bin/${_appname}"
83}
84

Scan history

Scanned at (UTC)SeverityRules
2026-08-03 00:08:14 MEDIUM 2
2026-08-02 00:16:08 MEDIUM 2
2026-08-01 00:11:18 MEDIUM 2
2026-07-31 00:14:10 MEDIUM 2
2026-07-30 00:17:23 MEDIUM 2
2026-07-29 00:25:53 MEDIUM 2
2026-07-28 00:07:28 MEDIUM 2
2026-07-27 00:24:32 MEDIUM 2
2026-07-26 00:07:32 MEDIUM 2
2026-07-25 00:13:44 MEDIUM 2
2026-07-24 00:02:28 MEDIUM 2
2026-07-23 00:14:47 MEDIUM 2
2026-07-22 00:29:32 MEDIUM 2
2026-07-21 00:24:15 MEDIUM 2
2026-07-20 00:19:49 MEDIUM 2
2026-07-19 00:17:08 MEDIUM 2
2026-07-18 00:14:48 MEDIUM 2
2026-07-17 00:06:16 MEDIUM 2
2026-07-16 00:05:41 MEDIUM 2
2026-07-15 00:09:25 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