orchids-bin

MEDIUM
maintainer itaxi 2 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

This PKGBUILD downloads a prebuilt binary package (.pacman archive) from a Supabase storage bucket (slelguoygbfzlpylpxfs.supabase.co), which is a third-party cloud storage host rather than an official vendor release infrastructure or well-known mirror. The archive contains an Electron/Chromium-based application binary that is directly executed after installation. While a sha256sum is provided (providing integrity checking against the specific artifact), the host is a personal/project Supabase project bucket that could be replaced or compromised without any code-signing verification. The package also sets SUID on chrome-sandbox (chmod 4755), which is standard for Chromium-based apps but increases the impact of any compromise. This is a genuine medium-severity supply-chain concern: a prebuilt executable binary pulled from an unofficial/personal cloud storage host with no additional verification beyond a hash that the PKGBUILD maintainer controls.

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:30 source=("${_pkgname}-${pkgver}.pacman::https://slelguoygbfzlpylpxfs.supabase.co/storage/v1/object/public/desktop-artifact/public/v${pkgver}/linux/orchids.pacman")
Medium AI review llm_review

An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 80%): This PKGBUILD downloads a prebuilt binary package (.pacman archive) from a Supabase storage bucket (slelguoygbfzlpylpxfs.supabase.co), which is a third-party cloud storage host rather than an official vendor release infrastructure or well-known mirror. The archive contains an Electron/Chromium-based application binary that is directly executed after installation. While a sha256sum is provided (providing integrity checking against the specific artifact), the host is a personal/project Supabase project bucket that could be replaced or compromised without any code-signing verification. The package also sets SUID on chrome-sandbox (chmod 4755), which is standard for Chromium-based apps but increases the impact of any compromise. This is a genuine medium-severity supply-chain concern: a prebuilt executable binary pulled from an unofficial/personal cloud storage host with no additional verification beyond a hash that the PKGBUILD maintainer controls.

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Manuj Dixit <manujdixit@gmail.com>
2pkgname=orchids-bin
3_pkgname=orchids
4pkgver=0.0.27
5pkgrel=1
6pkgdesc="The AI Developer"
7arch=('x86_64')
8url="https://orchids.app"
9license=('MIT')
10depends=(
11 'c-ares'
12 'ffmpeg'
13 'gtk3'
14 'libevent'
15 'libvpx'
16 'libxslt'
17 'libxss'
18 'minizip'
19 'nss'
20 're2'
21 'snappy'
22 'libnotify'
23)
24optdepends=(
25 'libappindicator-gtk3: System tray indicator support (AUR)'
26)
27provides=("${_pkgname}")
28conflicts=("${_pkgname}")
29options=('!strip' '!emptydirs')
30source=("${_pkgname}-${pkgver}.pacman::https://slelguoygbfzlpylpxfs.supabase.co/storage/v1/object/public/desktop-artifact/public/v${pkgver}/linux/orchids.pacman")
31sha256sums=('e7efcf79a46661475f3dac4773dc3b68fcba794efb2998bfc6e4af84ec423f81')
32
33package() {
34 # Extract the pacman package contents
35 tar -xf "${srcdir}/${_pkgname}-${pkgver}.pacman" -C "${pkgdir}/" --exclude='.PKGINFO' --exclude='.MTREE' --exclude='.INSTALL'
36
37 # Ensure proper permissions for the main binary
38 chmod 755 "${pkgdir}/opt/Orchids/orchids"
39
40 # Handle chrome-sandbox permissions (setuid for systems without user namespaces)
41 chmod 4755 "${pkgdir}/opt/Orchids/chrome-sandbox"
42
43 # Create symlink in /usr/bin
44 install -d "${pkgdir}/usr/bin"
45 ln -sf '/opt/Orchids/orchids' "${pkgdir}/usr/bin/orchids"
46
47 # Install license file (if exists in package)
48 install -Dm644 "${pkgdir}/opt/Orchids/LICENSE"* "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" 2>/dev/null || true
49}
50

Scan history

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