orchids-bin
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
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")
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# Maintainer: Manuj Dixit <manujdixit@gmail.com>
pkgname=orchids-bin
_pkgname=orchids
pkgver=0.0.27
pkgrel=1
pkgdesc="The AI Developer"
arch=('x86_64')
url="https://orchids.app"
license=('MIT')
depends=(
'c-ares'
'ffmpeg'
'gtk3'
'libevent'
'libvpx'
'libxslt'
'libxss'
'minizip'
'nss'
're2'
'snappy'
'libnotify'
)
optdepends=(
'libappindicator-gtk3: System tray indicator support (AUR)'
)
provides=("${_pkgname}")
conflicts=("${_pkgname}")
options=('!strip' '!emptydirs')
source=("${_pkgname}-${pkgver}.pacman::https://slelguoygbfzlpylpxfs.supabase.co/storage/v1/object/public/desktop-artifact/public/v${pkgver}/linux/orchids.pacman")
sha256sums=('e7efcf79a46661475f3dac4773dc3b68fcba794efb2998bfc6e4af84ec423f81')
package() {
# Extract the pacman package contents
tar -xf "${srcdir}/${_pkgname}-${pkgver}.pacman" -C "${pkgdir}/" --exclude='.PKGINFO' --exclude='.MTREE' --exclude='.INSTALL'
# Ensure proper permissions for the main binary
chmod 755 "${pkgdir}/opt/Orchids/orchids"
# Handle chrome-sandbox permissions (setuid for systems without user namespaces)
chmod 4755 "${pkgdir}/opt/Orchids/chrome-sandbox"
# Create symlink in /usr/bin
install -d "${pkgdir}/usr/bin"
ln -sf '/opt/Orchids/orchids' "${pkgdir}/usr/bin/orchids"
# Install license file (if exists in package)
install -Dm644 "${pkgdir}/opt/Orchids/LICENSE"* "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" 2>/dev/null || true
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 |