webex-bin

LOW
maintainer moritzo 45 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

The package downloads a prebuilt .deb from Webex's official binaries domain to extract and install; while the host is not on a standard whitelist, it is plausibly the project's official source, and the build process does not execute remote code or introduce unreviewed 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-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads a prebuilt .deb from Webex's official binaries domain to extract and install; while the host is not on a standard whitelist, it is plausibly the project's official source, and the build process does not execute remote code or introduce unreviewed 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:37 source=("$pkgname-$pkgver.deb::https://binaries.webex.com/WebexDesktop-Ubuntu-2004-Gold/20260901162743/Webex.deb"

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Moritz Oberjatzas <post@moritz-oberjatzas.eu>
2# Contributor: Alexander Sulfrian <asulfrian@zedat.fu-berlin.de>
3pkgname=webex-bin
4pkgver=46.8.0.35631
5pkgrel=3
6pkgdesc="Webex for Linux"
7arch=('x86_64')
8url="https://www.webex.com/"
9license=('custom')
10depends=('alsa-lib'
11 'at-spi2-atk'
12 'at-spi2-core'
13 'atk'
14 'binutils'
15 'krb5'
16 'libcups'
17 'libnotify'
18 'libpulse'
19 'libsecret'
20 'libxcb'
21 'libxcrypt-compat'
22 'libxkbcommon-x11'
23 'libxss'
24 'mesa'
25 'nspr'
26 'nss'
27 'openssl'
28 'pango'
29 'systemd-libs'
30 'upower'
31 'wayland'
32 'xcb-util-image'
33 'xcb-util-keysyms'
34 'xcb-util-renderutil'
35 'xcb-util-wm'
36 'xdg-utils')
37source=("$pkgname-$pkgver.deb::https://binaries.webex.com/WebexDesktop-Ubuntu-2004-Gold/20260901162743/Webex.deb"
38 'webex.xml')
39sha256sums=('a11adb6a7407e61a8be35dbb7b001053867ae769f9b9656e72db0b8df0963cd3'
40 '736a3ee2f30c947493eb01787205fc650f08a664a2c6a4a17c4189b8e2420c5a')
41options=('!strip')
42
43prepare() {
44 mkdir -p "$pkgname-$pkgver"
45 tar -Jxf data.tar.xz -C "$pkgname-$pkgver"
46}
47
48package() {
49 cd "$pkgname-$pkgver"
50 cp -dpr --no-preserve=ownership opt/ "$pkgdir/"
51
52 # Entferne die Webex-eigenen OpenSSL-Bibliotheken,
53 # damit die System-Bibliotheken (libssl.so.3, libcrypto.so.3) verwendet werden
54 rm -f "$pkgdir/opt/Webex/lib/libssl.so.3"
55 rm -f "$pkgdir/opt/Webex/lib/libcrypto.so.3"
56 rm "$pkgdir/opt/Webex/lib/libstdc++.so.6"
57
58 # Erstelle das Wrapper-Skript, das LD_LIBRARY_PATH setzt
59 mkdir -p "$pkgdir/usr/bin"
60 cat > "$pkgdir/usr/bin/webex" << 'EOF'
61#!/bin/bash
62export LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH
63exec /opt/Webex/bin/CiscoCollabHost "$@"
64EOF
65 chmod +x "$pkgdir/usr/bin/webex"
66
67 # Desktop-Datei und MIME-Typ
68 mkdir -p "$pkgdir/usr/share/applications/"
69 mv "$pkgdir/opt/Webex/bin/webex.desktop" "$pkgdir/usr/share/applications/"
70
71 mkdir -p "$pkgdir/usr/share/mime/packages/"
72 install -m0644 "${srcdir}/webex.xml" "${pkgdir}/usr/share/mime/packages/"
73}
74

Changes since previous scan

--- PKGBUILD @ 2026-09-16 00:03
+++ PKGBUILD @ 2026-09-17 00:27
@@ -1,8 +1,8 @@
# Maintainer: Moritz Oberjatzas <post@moritz-oberjatzas.eu>
# Contributor: Alexander Sulfrian <asulfrian@zedat.fu-berlin.de>
pkgname=webex-bin
-pkgver=46.6.1.35355
-pkgrel=1
+pkgver=46.8.0.35631
+pkgrel=3
pkgdesc="Webex for Linux"
arch=('x86_64')
url="https://www.webex.com/"
@@ -24,6 +24,7 @@
'mesa'
'nspr'
'nss'
+ 'openssl'
'pango'
'systemd-libs'
'upower'
@@ -33,9 +34,9 @@
'xcb-util-renderutil'
'xcb-util-wm'
'xdg-utils')
-source=("$pkgname-$pkgver.deb::https://binaries.webex.com/WebexDesktop-Ubuntu-2004-Gold/20260721114923/Webex.deb"
+source=("$pkgname-$pkgver.deb::https://binaries.webex.com/WebexDesktop-Ubuntu-2004-Gold/20260901162743/Webex.deb"
'webex.xml')
-sha256sums=('6f77f3ed9b081f441217341791e7736484c266bf493942aaa87532b8b6252af0'
+sha256sums=('a11adb6a7407e61a8be35dbb7b001053867ae769f9b9656e72db0b8df0963cd3'
'736a3ee2f30c947493eb01787205fc650f08a664a2c6a4a17c4189b8e2420c5a')
options=('!strip')
@@ -47,15 +48,27 @@
package() {
cd "$pkgname-$pkgver"
cp -dpr --no-preserve=ownership opt/ "$pkgdir/"
+
+ # Entferne die Webex-eigenen OpenSSL-Bibliotheken,
+ # damit die System-Bibliotheken (libssl.so.3, libcrypto.so.3) verwendet werden
+ rm -f "$pkgdir/opt/Webex/lib/libssl.so.3"
+ rm -f "$pkgdir/opt/Webex/lib/libcrypto.so.3"
rm "$pkgdir/opt/Webex/lib/libstdc++.so.6"
+ # Erstelle das Wrapper-Skript, das LD_LIBRARY_PATH setzt
+ mkdir -p "$pkgdir/usr/bin"
+ cat > "$pkgdir/usr/bin/webex" << 'EOF'
+#!/bin/bash
+export LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH
+exec /opt/Webex/bin/CiscoCollabHost "$@"
+EOF
+ chmod +x "$pkgdir/usr/bin/webex"
+
+ # Desktop-Datei und MIME-Typ
mkdir -p "$pkgdir/usr/share/applications/"
mv "$pkgdir/opt/Webex/bin/webex.desktop" "$pkgdir/usr/share/applications/"
mkdir -p "$pkgdir/usr/share/mime/packages/"
install -m0644 "${srcdir}/webex.xml" "${pkgdir}/usr/share/mime/packages/"
-
- mkdir -p "$pkgdir/usr/bin/"
- ln -s "/opt/Webex/bin/CiscoCollabHost" "$pkgdir/usr/bin/webex"
}

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 11:22:36 Medium 1
2026-09-16 00:03:17 Low 2
2026-09-15 00:25:31 Low 2
2026-09-14 00:27:57 Low 2
2026-09-13 00:19:54 Low 2
2026-09-12 00:25:17 Low 2
2026-09-11 00:19:22 Low 2
2026-09-10 13:20:36 Medium 1
2026-09-10 00:22:44 Low 2
2026-09-09 00:04:09 Low 2
2026-09-08 00:18:08 Low 2
2026-09-07 00:30:15 Low 2
2026-09-06 00:17:06 Low 2
2026-09-05 00:16:27 Low 2
2026-09-04 00:03:13 Low 2
2026-09-03 00:15:47 Low 2
2026-09-02 00:02:31 Low 2
2026-09-01 00:11:19 Low 2
2026-08-31 00:19:57 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