omnara-bin

maintainer nihalxkumar · 0 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged This PKGBUILD downloads a prebuilt, closed-source proprietary binary from releases.omnara.com (a project-specific but non-standard host) and installs it as an executable at /usr/bin/omnara, also setting it up as a persistent systemd user service that runs on login. The binary is not from a well-known, auditable source (e.g., GitHub releases with provenance), and the host could be compromised or repurposed. The binary runs as a daemon with network access ('After=network.target'), controls AI coding agents, and logs to the user's home directory. There is a sha256sum provided, which mitigates tampering in transit but does not address the trustworthiness of the upstream host or the binary itself. This is a genuine medium-severity supply-chain concern: an opaque binary from a personal/project-specific release host installed system-wide and run persistently as a service.

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:14 source_x86_64=("https://releases.omnara.com/${pkgver}/omnara-linux-x64")
MEDIUM AI review llm_review

An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 78%): This PKGBUILD downloads a prebuilt, closed-source proprietary binary from releases.omnara.com (a project-specific but non-standard host) and installs it as an executable at /usr/bin/omnara, also setting it up as a persistent systemd user service that runs on login. The binary is not from a well-known, auditable source (e.g., GitHub releases with provenance), and the host could be compromised or repurposed. The binary runs as a daemon with network access ('After=network.target'), controls AI coding agents, and logs to the user's home directory. There is a sha256sum provided, which mitigates tampering in transit but does not address the trustworthiness of the upstream host or the binary itself. This is a genuine medium-severity supply-chain concern: an opaque binary from a personal/project-specific release host installed system-wide and run persistently as a service.

PKGBUILD

1 offending line(s) highlighted
1## Maintainer: Nihal Kumar <2tv8xupqg at mozmail dot com>
2# https://github.com/nihalxkumar/pkgbuilds
3pkgname=omnara-bin
4pkgver=0.23.0
5pkgrel=1
6pkgdesc="Claude Code & Codex AI coding agent — control AI agents from desktop or phone"
7arch=('x86_64')
8url="https://www.omnara.com/"
9license=('custom') # closed-source proprietary binary
10provides=('omnara')
11conflicts=('omnara')
12options=('!strip' '!emptydirs') # prebuilt binary — do not strip
13
14source_x86_64=("https://releases.omnara.com/${pkgver}/omnara-linux-x64")
15sha256sums_x86_64=('ec4f1622bf8cc81719af3721881508debebc77621cef891821ddeafb241e505f')
16
17package() {
18 cd "$srcdir"
19
20 # Install the binary to system PATH
21 install -Dm755 "omnara-linux-x64" "$pkgdir/usr/bin/omnara"
22
23 # Systemd user service upstream daemon behavior.
24 install -Dm644 /dev/stdin "$pkgdir/usr/lib/systemd/user/com.omnara.daemon.service" <<'SERVICE'
25[Unit]
26Description=Omnara CLI Background Daemon
27After=network.target
28
29[Service]
30Type=simple
31ExecStart=/usr/bin/omnara daemon run-service
32Restart=on-failure
33RestartSec=5
34StandardOutput=append:%h/.omnara/logs/daemon/daemon.log
35StandardError=append:%h/.omnara/logs/daemon/daemon.log
36WorkingDirectory=%h
37
38[Install]
39WantedBy=default.target
40SERVICE
41
42 # Post-install instructions
43 install -Dm644 /dev/stdin "$pkgdir/usr/share/doc/$pkgname/README.postinst" <<'MSG'
44Omnara has been installed system-wide.
45
46# Enable and start the background daemon (required for mobile control):
47systemctl --user enable --now com.omnara.daemon.service
48
49# Recommended: keep the daemon alive even when you log out
50sudo loginctl enable-linger $USER
51
52# Run Omnara in any project directory
53omnara
54
55Logs: ~/.omnara/logs/daemon/daemon.log
56MSG
57}
58
59post_install() {
60 cat /usr/share/doc/omnara-bin/README.postinst
61}
62
63post_upgrade() {
64 post_install
65}
66

Scan history

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

Report a package

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

0 / 4000
Your suggestion