dashie-telegraf-plugins-git
maintainer e1mo
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The source is a Git repository from a plausible project host (dev.sigpipe.me) that is not on the standard whitelist but is used to build the project's own code; this is normal AUR packaging behavior and the built binaries are installed as expected.
Triggered rules
LOW
AI review downgraded a static finding
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 source is a Git repository from a plausible project host (dev.sigpipe.me) that is not on the standard whitelist but is used to build the project's own code; this is normal AUR packaging behavior and the built binaries are installed as expected.
1 higher static finding superseded - not the current verdict (shown for transparency)
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:16
source=("$pkgname::git+https://dev.sigpipe.me/dashie/telegraf-plugins")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Moritz 'e1mo' Fromm <git@e1mo.de>
2
3
_pkgname=dashie-telegraf-plugins
4
pkgname=$_pkgname-git
5
pkgver=master.r0.g071e959
6
pkgrel=1
7
pkgdesc='Various plugins for telegraf such as battery'
8
arch=('x86_64')
9
url='https://dev.sigpipe.me/dashie/telegraf-plugins'
10
provides=("${_pkgname}")
11
license=('MIT')
12
conflicts=("${_pkgname}")
13
depends=("glibc")
14
makedepends=('go' 'git')
15
options=('!emptydirs')
16
source=("$pkgname::git+https://dev.sigpipe.me/dashie/telegraf-plugins")
17
sha256sums=('SKIP')
18
19
pkgver() {
20
cd "${srcdir}/${pkgname}"
21
git describe --all --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | sed 's/heads\///g'
22
}
23
24
build() {
25
cd "$srcdir/$pkgname/"
26
mkdir "build";
27
for d in *; do
28
if [[ -f $d ]]; then
29
continue
30
fi
31
if [[ $d == "build" ]]; then
32
continue
33
fi
34
filename="${d}/${d}.go"
35
go build \
36
-trimpath \
37
-buildmode=pie \
38
-mod=readonly \
39
-modcacherw \
40
-ldflags "-X main.Version=$pkgver -linkmode external -extldflags $LDFLAGS" \
41
-o "build/dashie_telegraf_${d}" \
42
"${filename}"
43
done
44
}
45
46
package() {
47
cd "$srcdir/$pkgname"
48
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
49
cd build
50
for f in *; do
51
install -Dm755 "$f" "$pkgdir/usr/bin/$f";
52
done
53
}
54
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |