kickthemout-git
maintainer ilkkasoininen
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's own GitHub source via git, which is normal for AUR; the prepare() step modifies shebangs and creates a wrapper script, which is harmless; the 'recently orphaned' flag is metadata, not a code risk.
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 source via git, which is normal for AUR; the prepare() step modifies shebangs and creates a wrapper script, which is harmless; the 'recently orphaned' flag is metadata, not a code risk.
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: Eduardo Parra Mazuecos <eduparra90@gmail.com>
2
3
# I maintain this on github, feel free to submit a pull request to
4
# https://github.com/soker90/paquetes-archinux.git
5
6
_name=kickthemout
7
pkgname=${_name}-git
8
pkgver=0.1.r158.g861aea2
9
pkgrel=2
10
pkgdesc="Kick devices off your network by performing an ARP Spoof attack."
11
arch=('any')
12
url="https://github.com/k4m4/${_name}"
13
license=('MIT')
14
depends=('python' 'python-scapy' 'python-nmap' 'python-netifaces')
15
makedepends=('git')
16
source=("git+$url.git")
17
md5sums=('SKIP')
18
19
pkgver() {
20
git -C ${_name} describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'
21
}
22
23
prepare() {
24
cd "${srcdir}/${_name}"
25
sed -i "1 s|$|2|" scan.py kickthemout.py spoof.py
26
touch kickthemout
27
echo #!/bin/sh >> kickthemout
28
echo 'python "/usr/share/kickthemout/kickthemout.py" "$@"' >> kickthemout
29
30
}
31
32
33
package() {
34
cd "${srcdir}/${_name}"
35
36
install -m644 -D LICENSE "${pkgdir}/usr/share/licenses/$_name/LICENSE"
37
install -D -m755 kickthemout.py "${pkgdir}/usr/share/${_name}/kickthemout.py"
38
install -D -m755 scan.py "${pkgdir}/usr/share/${_name}/scan.py"
39
install -D -m755 spoof.py "${pkgdir}/usr/share/${_name}/spoof.py"
40
41
install -D -m755 kickthemout "${pkgdir}/usr/bin/kickthemout"
42
43
44
}
45
Changes since previous scan
--- PKGBUILD @ 2026-07-31 00:14+++ PKGBUILD @ 2026-08-03 00:08@@ -13,12 +13,8 @@ license=('MIT') depends=('python' 'python-scapy' 'python-nmap' 'python-netifaces') makedepends=('git')-source=(- 'parser'-)-md5sums=(- 'SKIP'-)+source=("git+$url.git")+md5sums=('SKIP') pkgver() { git -C ${_name} describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//'@@ -35,7 +31,6 @@ package() {- sudo "$srcdir/parser" cd "${srcdir}/${_name}" install -m644 -D LICENSE "${pkgdir}/usr/share/licenses/$_name/LICENSE"@@ -48,4 +43,3 @@ } -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 15:18:17 | MEDIUM | 1 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 17:15:21 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |