bytewalk
MEDIUM
maintainer RubenKelevra
1 votes
scanned 2026-09-27 13:18:29.354985
Why flagged
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
Triggered rules
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: timetoplatypus <timetoplatypus@protonmail.com>
2
pkgname=bytewalk
3
pkgver=1.0.2
4
pkgrel=1
5
pkgdesc="A firmware extraction tool & binwalk fork"
6
arch=("any")
7
url="https://gitlab.com/bytesweep/bytewalk"
8
license=("MIT")
9
source=("https://gitlab.com/bytesweep/$pkgname/-/archive/v$pkgver/$pkgname-v$pkgver.tar.gz")
10
md5sums=("9dce1d7eb189b8f39bb682cdfc29e4c2")
11
depends=("python")
12
optdepends=(
13
'python-pyqtgraph: graph and visualization support'
14
'python-opengl: binviz module support'
15
'python-capstone: disassembly support'
16
'arj: ARJ decompression support'
17
'cabextract: CAB archive support'
18
'cpio: CPIO archvie support'
19
'gzip: GZIP decompression support'
20
'mtd-utils: JFFS filesystem support'
21
'p7zip: ZIP, LZMA and ISO decompression support'
22
'squashfs-tools: squashfs support'
23
'tar: TAR archive support'
24
'bzip2: BZIP2 archive support'
25
'unrar: RAR decompression support'
26
'xz: XZ decompression support'
27
'firmware-mod-kit: cramfs support'
28
'lhasa: LHA support'
29
'sleuthkit: forensic analysis support'
30
)
31
makedepends=('git')
32
provides=('bytewalk')
33
conflicts=("bytewalk")
34
35
build() {
36
cd "${srcdir}/${pkgname}-v${pkgver}"
37
python setup.py build
38
}
39
40
package() {
41
cd "${srcdir}/${pkgname}-v${pkgver}"
42
python setup.py install -O1 --prefix="${pkgdir}/usr"
43
install -Dm 644 *.md -t "${pkgdir}/usr/share/doc/${pkgname}"
44
install -Dm 644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
45
}
46
47
# vim: ts=2 sw=2 et:
48
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-27 13:18:29 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |