easywifi-git
maintainer terjelunde
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's own GitHub repository, uses a SKIP'd checksum due to the git source, and adds a shebang to a Python script; no untrusted prebuilt binaries or malicious payloads are present.
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-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package builds from the project's own GitHub repository, uses a SKIP'd checksum due to the git source, and adds a shebang to a Python script; no untrusted prebuilt binaries or malicious payloads are present.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# Maintainer:
2
# Contributor: Mark Wagie <mark dot wagie at proton dot me>
3
pkgname=easywifi-git
4
pkgver=r9.04a9c12
5
pkgrel=1
6
pkgdesc="The easiest way to add wifi networks on Linux"
7
arch=('any')
8
url="https://github.com/NoahCristino/easywifi"
9
license=('MIT')
10
depends=(
11
'python'
12
'networkmanager'
13
)
14
makedepends=('git')
15
optdepends=('dnsmasq: to create hotspots')
16
provides=("${pkgname%-git}")
17
conflicts=("${pkgname%-git}")
18
source=('git+https://github.com/NoahCristino/easywifi.git')
19
sha256sums=('SKIP')
20
21
pkgver() {
22
cd "${pkgname%-git}"
23
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
24
}
25
26
prepare() {
27
cd "${pkgname%-git}"
28
29
# Add shebang
30
sed -i '1 i\#!/usr/bin/env python' "${pkgname%-git}.py"
31
}
32
33
package() {
34
cd "${pkgname%-git}"
35
install -Dm755 "${pkgname%-git}.py" "$pkgdir/usr/bin/${pkgname%-git}"
36
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
37
}
38
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 17:15:21 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |