pelorus-bin

maintainer stelzo · 0 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged This PKGBUILD downloads prebuilt binary .deb files (executable binary, shared library, static library) from a Codeberg Pages host (uos-robotics.codeberg.page) — a personal/organizational static hosting page, not an official upstream release host. All three checksums are 'SKIP', meaning there is zero integrity verification. The build() phase also executes the downloaded binary directly to generate shell completions. The combination of: (1) prebuilt binaries from an unofficial/personal host, (2) no checksum verification whatsoever, and (3) direct execution of the downloaded binary during build, constitutes a genuine supply-chain risk. If the Codeberg Pages content is replaced or the host is compromised, arbitrary code runs on the builder's machine. The maintainer appears to be the same person as the upstream author (stelzo), which reduces but does not eliminate the concern, since the hosting is still a mutable personal page with no pinned integrity guarantees. This is a textbook medium-severity supply-chain concern.

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:13 "$pkgname-$pkgver-bin.deb::https://uos-robotics.codeberg.page/ppa/ubuntu/pool/main/noble/pelorus_$pkgver-1_amd64.deb"
MEDIUM AI review llm_review

An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): This PKGBUILD downloads prebuilt binary .deb files (executable binary, shared library, static library) from a Codeberg Pages host (uos-robotics.codeberg.page) — a personal/organizational static hosting page, not an official upstream release host. All three checksums are 'SKIP', meaning there is zero integrity verification. The build() phase also executes the downloaded binary directly to generate shell completions. The combination of: (1) prebuilt binaries from an unofficial/personal host, (2) no checksum verification whatsoever, and (3) direct execution of the downloaded binary during build, constitutes a genuine supply-chain risk. If the Codeberg Pages content is replaced or the host is compromised, arbitrary code runs on the builder's machine. The maintainer appears to be the same person as the upstream author (stelzo), which reduces but does not eliminate the concern, since the hosting is still a mutable personal page with no pinned integrity guarantees. This is a textbook medium-severity supply-chain concern.

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Christopher Sieh (stelzo) <stelzo@steado.de>
2pkgname=pelorus-bin
3pkgver=0.0.5
4pkgrel=1
5pkgdesc="Highly efficient Lidar Inertial Odometry."
6arch=('x86_64' 'aarch64')
7url="https://codeberg.org/stelzo/pelorus"
8license=('MIT' 'Apache-2.0')
9depends=('libgcc' 'glibc' 'minot')
10makedepends=()
11options=('!lto' '!strip' '!debug')
12source_x86_64=(
13 "$pkgname-$pkgver-bin.deb::https://uos-robotics.codeberg.page/ppa/ubuntu/pool/main/noble/pelorus_$pkgver-1_amd64.deb"
14 "$pkgname-$pkgver-bin-lib.deb::https://uos-robotics.codeberg.page/ppa/ubuntu/pool/main/noble/libpelorus_$pkgver-1_amd64.deb"
15 "$pkgname-$pkgver-bin-dev.deb::https://uos-robotics.codeberg.page/ppa/ubuntu/pool/main/noble/libpelorus-dev_$pkgver-1_amd64.deb"
16)
17sha256sums_x86_64=('SKIP' 'SKIP' 'SKIP')
18source_aarch64=(
19 "$pkgname-$pkgver-bin.deb::https://uos-robotics.codeberg.page/ppa/ubuntu/pool/main/noble/pelorus_$pkgver-1_arm64.deb"
20 "$pkgname-$pkgver-bin-lib.deb::https://uos-robotics.codeberg.page/ppa/ubuntu/pool/main/noble/libpelorus_$pkgver-1_arm64.deb"
21 "$pkgname-$pkgver-bin-dev.deb::https://uos-robotics.codeberg.page/ppa/ubuntu/pool/main/noble/libpelorus-dev_$pkgver-1_arm64.deb"
22)
23sha256sums_aarch64=('SKIP' 'SKIP' 'SKIP')
24noextract=("$pkgname-$pkgver-bin.deb" "$pkgname-$pkgver-bin-lib.deb" "$pkgname-$pkgver-bin-dev.deb")
25provides=('pelorus' 'libpelorus')
26conflicts=('pelorus' 'libpelorus')
27
28prepare() {
29 mkdir -p "$srcdir/pelorus-bin-ext" "$srcdir/pelorus-lib-ext" "$srcdir/pelorus-dev-ext"
30 cd "$srcdir/pelorus-bin-ext"
31 bsdtar -xf "$srcdir/$pkgname-$pkgver-bin.deb"
32 tar -xpf data.tar.*
33
34 cd "$srcdir/pelorus-lib-ext"
35 bsdtar -xf "$srcdir/$pkgname-$pkgver-bin-lib.deb"
36 tar -xpf data.tar.*
37
38 cd "$srcdir/pelorus-dev-ext"
39 bsdtar -xf "$srcdir/$pkgname-$pkgver-bin-dev.deb"
40 tar -xpf data.tar.*
41}
42
43build() {
44 mkdir -p "$srcdir/completions"
45 "$srcdir/pelorus-bin-ext/usr/bin/pelorus" completions bash > "$srcdir/completions/bash"
46 "$srcdir/pelorus-bin-ext/usr/bin/pelorus" completions zsh > "$srcdir/completions/_zsh"
47 "$srcdir/pelorus-bin-ext/usr/bin/pelorus" completions fish > "$srcdir/completions/fish"
48}
49
50package() {
51 install -Dm755 "$srcdir/pelorus-lib-ext/usr/lib/libpelorus.so" "$pkgdir/usr/lib/libpelorus.so"
52 install -Dm644 "$srcdir/pelorus-lib-ext/usr/lib/libpelorus.a" "$pkgdir/usr/lib/libpelorus.a"
53
54 install -Dm755 "$srcdir/pelorus-bin-ext/usr/bin/pelorus" "$pkgdir/usr/bin/pelorus"
55
56 install -Dm644 "$srcdir/pelorus-dev-ext/usr/include/pelorus.h" "$pkgdir/usr/include/pelorus.h"
57 install -Dm644 "$srcdir/pelorus-dev-ext/usr/include/pelorus.hpp" "$pkgdir/usr/include/pelorus.hpp"
58 install -Dm644 "$srcdir/pelorus-dev-ext/usr/lib/pkgconfig/pelorus.pc" "$pkgdir/usr/lib/pkgconfig/pelorus.pc"
59 install -Dm644 "$srcdir/pelorus-dev-ext/usr/lib/cmake/pelorus/pelorusConfig.cmake" "$pkgdir/usr/lib/cmake/pelorus/pelorusConfig.cmake"
60
61 install -Dm644 "$srcdir/completions/bash" "$pkgdir/usr/share/bash-completion/completions/pelorus"
62 install -Dm644 "$srcdir/completions/_zsh" "$pkgdir/usr/share/zsh/site-functions/_pelorus"
63 install -Dm644 "$srcdir/completions/fish" "$pkgdir/usr/share/fish/vendor_completions.d/pelorus.fish"
64}
65

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