telemost
maintainer lapsus
· 3 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The source is a proprietary MSI installer from Yandex's official CDN, which is a plausible project-owned host despite not being on the standard whitelist; the package builds and installs the official client without executing untrusted remote code or introducing malicious payloads.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The source is a proprietary MSI installer from Yandex's official CDN, which is a plausible project-owned host despite not being on the standard whitelist; the package builds and installs the official client without executing untrusted remote code or introducing malicious payloads.
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:12
source=("${pkgname}-${pkgver}.msi::https://disk.cdn.yandex.net/update/stable/ef60ee608fc67265be7ec794ad4b0290/YandexTelemostSetup.msi"
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Yakov Till <yakov.till@gmail.com>
2
3
pkgname=telemost
4
pkgver=2.36.4.8579
5
pkgrel=1
6
pkgdesc="Yandex video conferencing client (Wine). Camera and screen sharing may not work under Wine."
7
arch=('x86_64')
8
url="https://telemost.yandex.com"
9
license=('LicenseRef-proprietary')
10
depends=('wine')
11
makedepends=('msitools' 'icoutils' 'jq')
12
source=("${pkgname}-${pkgver}.msi::https://disk.cdn.yandex.net/update/stable/ef60ee608fc67265be7ec794ad4b0290/YandexTelemostSetup.msi"
13
"telemost.desktop")
14
sha256sums=('80fc873488046ebdd772523a2a7217f1da0d925908827e49795a2a3531254711'
15
'f76a203977c050cda625835166f73a8771bb867b2fe163781051afc2afbb25a0')
16
options=('!strip' '!debug')
17
18
_api_url="https://cloud-api.yandex.net/v1/telemost/clients/v2-win64/installer"
19
20
latestver() {
21
curl -s "$_api_url" | jq -r .version
22
}
23
24
prepare() {
25
# Extract MSI with proper directory layout
26
msiextract -C "$srcdir" "${pkgname}-${pkgver}.msi"
27
28
# Extract icon from MSI (Icon.Icon.ico is in the raw archive)
29
7z x -o"$srcdir" "${pkgname}-${pkgver}.msi" 'Icon.Icon.ico' -y > /dev/null
30
31
# Convert ICO to individual PNGs
32
cd "$srcdir"
33
icotool -x Icon.Icon.ico
34
}
35
36
package() {
37
local _appdir="$srcdir/Yandex/YandexTelemost"
38
39
# Remove update service (not needed in packaged install)
40
rm -f "$_appdir/F.UpdateServiceExe"
41
42
# Install application files
43
install -dm755 "$pkgdir/opt/$pkgname"
44
cp -a "$_appdir/"* "$pkgdir/opt/$pkgname/"
45
46
# License reference
47
install -dm755 "$pkgdir/usr/share/licenses/$pkgname"
48
echo "Proprietary. See https://yandex.com/legal/telemost_termsofuse/" \
49
> "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
50
51
# Icons (all sizes from ICO)
52
for icon in "$srcdir"/Icon.Icon_*_*x*x*.png; do
53
size=$(echo "$icon" | sed 's/.*_\([0-9]*\)x[0-9]*x[0-9]*.png/\1/')
54
install -Dm644 "$icon" "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/$pkgname.png"
55
done
56
57
# Desktop file
58
install -Dm644 "$srcdir/$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
59
60
# Wrapper script
61
install -Dm755 /dev/null "$pkgdir/usr/bin/$pkgname"
62
cat << 'EOF' > "$pkgdir/usr/bin/$pkgname"
63
#!/bin/bash
64
export WINEARCH=win64
65
export WINEPREFIX="${XDG_DATA_HOME:-$HOME/.local/share}/telemost/wine"
66
export WINEDEBUG=-all
67
68
# Initialize Wine prefix on first run
69
if [ ! -d "$WINEPREFIX" ]; then
70
mkdir -p "$WINEPREFIX"
71
wineboot -u 2>/dev/null
72
# Disable DLLs that crash under Wine during WebRTC video sessions:
73
# dsengine.dll - DirectShow capture engine (no real camera support in Wine)
74
# wmfengine.dll - WMF HW video decoder (crashes on codec init)
75
wine reg add "HKCU\Software\Wine\DllOverrides" /v dsengine /t REG_SZ /d "" /f 2>/dev/null
76
wine reg add "HKCU\Software\Wine\DllOverrides" /v wmfengine /t REG_SZ /d "" /f 2>/dev/null
77
fi
78
79
cd /opt/telemost
80
exec wine YandexTelemost.exe "$@"
81
EOF
82
}
83
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |