marvis-client
maintainer Interaccoonale
· 0 votes
· scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged
Installs a prebuilt binary .deb from mobile.mist.com (Juniper/Mist's own infrastructure), which is plausibly official, but the package has a SHA256 checksum and the host is Juniper's own domain, making this closer to low; however, it is a prebuilt executable with no source build and the host is not a well-known release CDN, so medium is appropriate given the unverifiable binary nature.
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
source=("https://mobile.mist.com/installers/marvisclient/linux_debian_x86/${pkgver}/marvisclient-installer.deb")
LOW
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
MEDIUM
AI review
llm_review
An AI model (anthropic/claude-sonnet-4.6) reviewed this and agrees it is MEDIUM (confidence 70%): Installs a prebuilt binary .deb from mobile.mist.com (Juniper/Mist's own infrastructure), which is plausibly official, but the package has a SHA256 checksum and the host is Juniper's own domain, making this closer to low; however, it is a prebuilt executable with no source build and the host is not a well-known release CDN, so medium is appropriate given the unverifiable binary nature.
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Jiao Sun <xzzzf.dsx@gmail.com>
2
# Contributor: Jiao Sun <xzzzf.dsx@gmail.com>
3
4
pkgname=marvis-client
5
pkgver=1.0.0
6
pkgrel=1
7
pkgdesc="Marvis Client for eduroam authentication"
8
arch=('x86_64')
9
url="https://www.juniper.net/us/en/products/software/mist/marvis.html"
10
license=('custom')
11
depends=('glibc')
12
makedepends=('tar')
13
source=("https://mobile.mist.com/installers/marvisclient/linux_debian_x86/${pkgver}/marvisclient-installer.deb")
14
# When updating the script, write sha256sums=('SKIP') and run `updpkgsums`, 'SKIP' will be automatically replaced with the correct sha256sums.
15
sha256sums=('7de8b2372279f9b99fb770c020e5556f70e388341715db87bb15b86026fd8361')
16
options=('!strip')
17
18
package() {
19
cd "$srcdir"
20
21
# Extract the control tarball for license
22
if [ -f control.tar.gz ]; then
23
bsdtar -xf control.tar.gz -C "$pkgdir" || true
24
fi
25
26
# Extract the data tarball (contains the actual files)
27
if [ -f data.tar.xz ]; then
28
bsdtar -xf data.tar.xz -C "$pkgdir"
29
elif [ -f data.tar.zst ]; then
30
bsdtar -xf data.tar.zst -C "$pkgdir"
31
elif [ -f data.tar.gz ]; then
32
bsdtar -xf data.tar.gz -C "$pkgdir"
33
fi
34
35
# Ensure binary is executable
36
find "$pkgdir/usr/bin" -type f -exec chmod 755 {} + 2>/dev/null || true
37
38
# Install license if present
39
install -Dm644 "$srcdir/control" "$pkgdir/usr/share/licenses/$pkgname/control" 2>/dev/null || true
40
}
41
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | MEDIUM | 3 |
| 2026-08-02 00:16:08 | MEDIUM | 3 |
| 2026-08-01 00:11:18 | MEDIUM | 3 |
| 2026-07-31 00:14:10 | MEDIUM | 3 |
| 2026-07-30 00:17:23 | MEDIUM | 3 |
| 2026-07-29 00:25:53 | MEDIUM | 3 |
| 2026-07-28 05:38:44 | MEDIUM | 3 |
| 2026-07-28 05:37:03 | MEDIUM | 3 |