sipgate-softphone
Triggered rules
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:13
"https://sipgate-desktop-app.s3.eu-central-1.amazonaws.com/${appimage}"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): The PKGBUILD downloads a prebuilt AppImage binary from an S3 bucket (sipgate-desktop-app.s3.eu-central-1.amazonaws.com) and executes it during the build phase to extract its contents. While S3 is not inherently untrustworthy, this is an official vendor-controlled bucket for Sipgate's desktop application, not a random personal host. The sha256sum is pinned, which mitigates substitution attacks. However, the PKGBUILD executes the AppImage binary directly during packaging (./$appimage --appimage-extract), meaning a compromised or tampered binary would execute arbitrary code on the build machine. The S3 bucket name is plausibly official (matches the vendor), but S3 buckets can be misconfigured or taken over. The core concern is a prebuilt closed-source binary being executed during build — this is a genuine medium-severity supply-chain concern, not a false positive, even though the sha256 is pinned and the host appears to be vendor-controlled.
PKGBUILD
1 offending line(s) highlighted# $Id$
# Maintainer: Radu Potop <radu at wooptoo dot com>
pkgname=sipgate-softphone
appimage="${pkgname}.AppImage"
pkgver=1.17.19
pkgrel=1
pkgdesc='Make phone calls with the Sipgate softphone'
arch=('any')
url="https://www.sipgate.co.uk/softphone"
license=('Other')
source=(
"https://sipgate-desktop-app.s3.eu-central-1.amazonaws.com/${appimage}"
"sipgate.desktop"
)
package() {
chmod +x $appimage
./$appimage --appimage-extract # extracts to squashfs-root
DESTDIR="${pkgdir}/opt/${pkgname}/"
mkdir -p $DESTDIR
cp -r --no-preserve=mode,ownership squashfs-root/* $DESTDIR
# Copy desktop file
install -vDm 644 sipgate.desktop "${pkgdir}/usr/share/applications/sipgate.desktop"
# Fix permissions
chmod +x "${pkgdir}/opt/${pkgname}/${pkgname}"
}
sha256sums=('e2760861cda8ffe4d12446f4f8419de0b16831e48e6f56a5e2f0f73af904cb88'
'00bce97f5f393524a9ed5f6d2588f889d2ecfdac4d552634dec891ebed913fe7')
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 |