cubieboard-livesuit
The package downloads a prebuilt LiveSuit binary from the official cubieboard.org domain, which is a plausible project-owned host; the binary is not executed during build and the source is otherwise legitimate, making the risk low despite the non-whitelisted host.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads a prebuilt LiveSuit binary from the official cubieboard.org domain, which is a plausible project-owned host; the binary is not executed during build and the source is otherwise legitimate, making the risk low despite the non-whitelisted host.
1 higher static finding superseded - not the current verdict (shown for transparency)
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:16
"http://dl.cubieboard.org/software/tools/livesuit/LiveSuitV${pkgver}_For_Linux64.zip"
PKGBUILD
1 offending line(s) highlighted# Maintainer: Figue <ffigue@gmail.com>
# Contributor: Pirea Radu <pirea.radu@gmail.com>
pkgname=cubieboard-livesuit
pkgver=306
pkgrel=4
pkgdesc="LiveSuit is a tool to flash Images to the NAND of Allwinner devices, such as Cubieboard1, Cubieboard2, and Cubietruck. This package use the ZIP that comes from official Cubieboard download page."
arch=('i686' 'x86_64')
url="http://cubieboard.org"
license=('GPL')
depends=('libpng12' 'qt4' 'linux-headers')
makedepends=('git' 'dkms')
conflicts=()
install=${pkgname}.install
source_x86_64=("${pkgname}"::'git+https://github.com/linux-sunxi/sunxi-livesuite.git'
"http://dl.cubieboard.org/software/tools/livesuit/LiveSuitV${pkgver}_For_Linux64.zip"
"50-awusb.rules" "awusb-fix.patch")
source_i686=("${pkgname}"::'git+https://github.com/linux-sunxi/sunxi-livesuite.git'
"http://dl.cubieboard.org/software/tools/livesuit/LiveSuitV${pkgver}_For_Linux32.zip"
"50-awusb.rules" "awusb-fix.patch")
sha256sums_i686=('SKIP'
'91553f7dc0a8dc467a6f584b8faea73ddbd6fa6ba39fb3701d208d519a7173be'
'21e03a459c30fbf92bef5b086f8c93c6ac7071d97e7855dce7627e624969081f'
'033a91cd366b1ecd13ea44e49ee454830623b4db42c76d74e084360a8f33f966')
sha256sums_x86_64=('SKIP'
'12c042080e6b49e3edff7052cbb9ff0a89badce12be04d1443b1c9d5163d9bf3'
'21e03a459c30fbf92bef5b086f8c93c6ac7071d97e7855dce7627e624969081f'
'033a91cd366b1ecd13ea44e49ee454830623b4db42c76d74e084360a8f33f966')
build() {
# LiveSuit
if [ "$CARCH" = "x86_64" ]; then
cd ${srcdir}/LiveSuit_For_Linux64
elif [ "$CARCH" = "i686" ]; then
cd ${srcdir}/LiveSuit_For_Linux32
fi
tail -n +60 LiveSuit.run > LiveSuit.tar.bz2
tar xjvf LiveSuit.tar.bz2
# Kernel module awusb
cd ${srcdir}/${pkgname}/awusb
patch -Np1 -i ${srcdir}/awusb-fix.patch
# Kernels greater than 5.4 fails to build
function ver { printf "%03d%03d%03d" $(echo "$1" | tr '.' ' '); }
kernel_ver=$(uname -r | cut -d'-' -f1)
if [ "$(ver $kernel_ver)" -gt "$(ver 5.4)" ]; then sed -E -e 's:SUBDIRS=([^ ]+) :M=\1 &:g' -i Makefile ; fi
make
}
package() {
# LiveSuit
if [ "$CARCH" = "x86_64" ]; then
cd ${srcdir}/LiveSuit_For_Linux64
elif [ "$CARCH" = "i686" ]; then
cd ${srcdir}/LiveSuit_For_Linux32
fi
mkdir -p "${pkgdir}/opt/${pkgname}"
cp -r LiveSuit/* ${pkgdir}/opt/${pkgname}/
# Kernel module awusb
mkdir -p ${pkgdir}/usr/lib/modules/`uname -r`/kernel/ ${pkgdir}/etc/udev/rules.d
cp ${srcdir}/${pkgname}/awusb/awusb.ko ${pkgdir}/usr/lib/modules/`uname -r`/kernel/
cp ${srcdir}/50-awusb.rules ${pkgdir}/etc/udev/rules.d/
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |