splitfs-git
The package builds from source hosted on a non-whitelisted but plausibly project-owned domain (perot.me), which is normal for AUR packages; the source is not a prebuilt executable, and the worst case of a swapped host is limited to supply-chain risk of unreviewed code, not automatic remote code execution.
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 builds from source hosted on a non-whitelisted but plausibly project-owned domain (perot.me), which is normal for AUR packages; the source is not a prebuilt executable, and the worst case of a swapped host is limited to supply-chain risk of unreviewed code, not automatic remote code execution.
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:13
"git://perot.me/$_gitname#branch=$_gitbranch"
PKGBUILD
1 offending line(s) highlighted_gitname='splitfs'
pkgname="$_gitname-git"
_gitbranch='master'
pkgver=r4.248a79c
pkgrel=2
pkgdesc='FUSE filesystem that chunks files up.'
arch=('any')
url="https://github.com/EtiennePerot/$_gitname"
license=('BSD')
depends=('fuse')
makedepends=('git' 'go')
source=(
"git://perot.me/$_gitname#branch=$_gitbranch"
"fuse::git+https://github.com/bazil/fuse"
"net::git+https://github.com/golang/net"
)
sha512sums=('SKIP' 'SKIP' 'SKIP')
_self_package="perot.me/$_gitname"
_vendor_git_submodules=(
'fuse:bazil.org/fuse'
'net:golang.org/x/net'
)
_go_binaries=(
'splitfs:splitfs.go'
)
pkgver() {
cd "$srcdir/$_gitname"
(
set -o pipefail
git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' || printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
)
}
build() {
# Emulate a GOPATH so we can build in peace.
mkdir -p "$(dirname "$srcdir/gopath/src/$_self_package")"
ln -s "$srcdir/$_gitname" "$srcdir/gopath/src/$_self_package"
cd "$srcdir/gopath/src/$_self_package"
# Take care of submodules.
local _vendor_git_submodule _srcdir_subdir _package_name
for _vendor_git_submodule in "${_vendor_git_submodules[@]}"; do
_srcdir_subdir="$(echo "$_vendor_git_submodule" | cut -d: -f1)"
_package_name="$(echo "$_vendor_git_submodule" | cut -d: -f2-)"
git config "submodule.vendor/$_package_name.url" "$srcdir/$_srcdir_subdir"
git submodule update "vendor/$_package_name"
done
# Actually build.
mkdir -p "$srcdir/bin"
local _go_binary _binary_name _go_binary_file
for _go_binary in "${_go_binaries[@]}"; do
_binary_name="$(echo "$_go_binary" | cut -d: -f1)"
_go_binary_file="$(echo "$_go_binary" | cut -d: -f2-)"
GOPATH="$srcdir/gopath" go build -o "$srcdir/bin/$_binary_name" "$_go_binary_file"
done
}
package() {
cd "$srcdir/$_gitname"
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
local _go_binary _binary_name
for _go_binary in "${_go_binaries[@]}"; do
_binary_name="$(echo "$_go_binary" | cut -d: -f1)"
install -D -m755 "$srcdir/bin/$_binary_name" "$pkgdir/usr/bin/$_binary_name"
done
}
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 |