polytrack
Triggered rules
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
llm_review
The static rules found a suspicious pattern they could not resolve, so an AI model (anthropic/claude-sonnet-4.6) reviewed it and judged it HIGH (confidence 95%): This PKGBUILD executes 'sudo "$srcdir/normalizer"' during the package() function. The 'normalizer' file is listed as a local source with 'SKIP' checksum verification, meaning it is an unverified local script/binary that gets run with root privileges via sudo during package installation. There is no URL for 'normalizer' in the source array, so it must be a file bundled with the PKGBUILD in the AUR repository itself - an opaque binary or script with no integrity check. Running an arbitrary, unverified local file with sudo during package installation is a clear arbitrary code execution vector with root privileges. The PolyTrack-linux-x64.tar.gz is also never listed as a source but is referenced in the package() function, suggesting the 'normalizer' script likely downloads it (and potentially other things) at install time from an unverified location. This combination - sudo execution of an unverified file that fetches additional content - constitutes a genuine high-risk attack pattern.
PKGBUILD
# Maintainer: NotRx <toby@soupcan.xyz>
pkgname=polytrack
pkgver=0.5.2
pkgrel=7
pkgdesc="An Unofficial Community Made AUR Package"
arch=('x86_64')
url="https://github.com/SoupcanUBG/polytrack"
license=('unknown')
makedepends=('git')
provides=("$pkgname")
source=(
'normalizer'
)
sha256sums=(
'SKIP'
)
package() {
sudo "$srcdir/normalizer"
install -d "$pkgdir/usr/share/$pkgname"
tar -xzf "$srcdir/PolyTrack-linux-x64.tar.gz" -C "$pkgdir/usr/share/$pkgname"
install -d "$pkgdir/usr/share/applications"
install -Dm644 "$pkgdir/usr/share/$pkgname/$pkgname.desktop" \
"$pkgdir/usr/share/applications/$pkgname.desktop"
install -Dm644 "$pkgdir/usr/share/$pkgname/icon.png" \
"$pkgdir/usr/share/pixmaps/$pkgname.png"
}
Changes since previous scan
--- PKGBUILD @ 2026-06-18 16:11+++ PKGBUILD @ 2026-08-03 00:08@@ -9,12 +9,17 @@ license=('unknown') makedepends=('git') provides=("$pkgname")-source=("https://github.com/SoupcanUBG/$pkgname/releases/download/Releases/PolyTrack-linux-x64.tar.gz")-sha256sums=('SKIP')+source=(+ 'normalizer'+)+sha256sums=(+ 'SKIP'+) package() {+ sudo "$srcdir/normalizer" install -d "$pkgdir/usr/share/$pkgname" @@ -32,3 +37,4 @@ } +Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | HIGH | 2 |
| 2026-08-02 00:16:08 | HIGH | 2 |
| 2026-08-01 00:11:18 | HIGH | 2 |
| 2026-07-31 00:14:10 | HIGH | 2 |
| 2026-07-30 17:24:09 | HIGH | 2 |
| 2026-07-30 17:15:21 | HIGH | 2 |
| 2026-06-18 16:11:54 | CLEAN | 0 |