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
3pkgname=telemost
4pkgver=2.36.4.8579
5pkgrel=1
6pkgdesc="Yandex video conferencing client (Wine). Camera and screen sharing may not work under Wine."
7arch=('x86_64')
8url="https://telemost.yandex.com"
9license=('LicenseRef-proprietary')
10depends=('wine')
11makedepends=('msitools' 'icoutils' 'jq')
12source=("${pkgname}-${pkgver}.msi::https://disk.cdn.yandex.net/update/stable/ef60ee608fc67265be7ec794ad4b0290/YandexTelemostSetup.msi"
13 "telemost.desktop")
14sha256sums=('80fc873488046ebdd772523a2a7217f1da0d925908827e49795a2a3531254711'
15 'f76a203977c050cda625835166f73a8771bb867b2fe163781051afc2afbb25a0')
16options=('!strip' '!debug')
17
18_api_url="https://cloud-api.yandex.net/v1/telemost/clients/v2-win64/installer"
19
20latestver() {
21 curl -s "$_api_url" | jq -r .version
22}
23
24prepare() {
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
36package() {
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
64export WINEARCH=win64
65export WINEPREFIX="${XDG_DATA_HOME:-$HOME/.local/share}/telemost/wine"
66export WINEDEBUG=-all
67
68# Initialize Wine prefix on first run
69if [ ! -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
77fi
78
79cd /opt/telemost
80exec wine YandexTelemost.exe "$@"
81EOF
82}
83

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

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

0 / 4000
Your suggestion