hla-bin
maintainer olof
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads the source from the project's official host and a license file from a standard CC URL; both are non-executable and verifiable, posing minimal risk despite the host not being whitelisted.
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-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads the source from the project's official host and a license file from a standard CC URL; both are non-executable and verifiable, posing minimal risk despite the host not being whitelisted.
2 higher static findings superseded - not the current verdict (shown for transparency)
MEDIUM
External download from an untrusted host, not in source=()
external_download_not_in_source
curl/wget fetches a URL on a non-allowlisted host that is not part of source=(), so it is not checksum-verified by makepkg.
-
PKGBUILD:19
wget -O "${srcdir}/LICENSE" 'https://creativecommons.org/licenses/by/4.0/legalcode.txt'
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:14
source=("https://www.plantation-productions.com/Webster/HighLevelAsm/HLAv$pkgver/linux.hla.tar.gz")
PKGBUILD
2 offending line(s) highlighted
1
# Maintainer: Olof Nord <aur@olof.info>
2
3
pkgname='hla-bin'
4
pkgver='2.16'
5
pkgrel='1'
6
pkgdesc='The High-Level Assembler for the 80x86 CPU'
7
provides=('hla')
8
conflicts=('hla')
9
arch=('x86_64' 'i686')
10
makedepends=('wget')
11
install="${pkgname}.install"
12
url="https://www.plantation-productions.com/Webster/HighLevelAsm"
13
license=('custom: Creative Commons 4.0 (by/attribution)')
14
source=("https://www.plantation-productions.com/Webster/HighLevelAsm/HLAv$pkgver/linux.hla.tar.gz")
15
sha256sums=('6c9a7773ed12a27d8ab4871e4b64544a56936db23c067230168f26178af2815c')
16
17
prepare() {
18
# Fetch custom license file
19
wget -O "${srcdir}/LICENSE" 'https://creativecommons.org/licenses/by/4.0/legalcode.txt'
20
}
21
22
package() {
23
install -D -m 755 "${srcdir}/usr/hla/delete" -t "${pkgdir}/usr/bin/hla/"
24
install -D -m 755 "${srcdir}/usr/hla/hla" -t "${pkgdir}/usr/bin/hla/"
25
install -D -m 755 "${srcdir}/usr/hla/hlacmp" -t "${pkgdir}/usr/bin/hla/"
26
install -D -m 755 "${srcdir}/usr/hla/hlaparse" -t "${pkgdir}/usr/bin/hla/"
27
install -D -m 755 "${srcdir}/usr/hla/makefile" -t "${pkgdir}/usr/bin/hla/"
28
install -D -m 755 "${srcdir}/usr/hla/mkMake" -t "${pkgdir}/usr/bin/hla/"
29
30
for file in $(find ${srcdir}/usr/hla/hlalib/ -type f -printf "%f\n"); do
31
install -D -m 644 "${srcdir}/usr/hla/hlalib/${file}" -t "${pkgdir}/usr/bin/hla/hlalib/";
32
done
33
34
for file in $(find ${srcdir}/usr/hla/include/ -maxdepth 1 -type f -printf "%f\n"); do
35
install -D -m 644 "${srcdir}/usr/hla/include/${file}" -t "${pkgdir}/usr/bin/hla/include/";
36
done
37
38
for file in $(find ${srcdir}/usr/hla/include/os/ -type f -printf "%f\n"); do
39
install -D -m 644 "${srcdir}/usr/hla/include/os/${file}" -t "${pkgdir}/usr/bin/hla/include/os/";
40
done
41
42
# Install license
43
install -D -m 644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}/"
44
}
45
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 3 |
| 2026-08-02 00:16:08 | LOW | 3 |
| 2026-08-01 00:11:18 | LOW | 3 |
| 2026-07-31 00:14:10 | LOW | 3 |
| 2026-07-30 00:17:23 | LOW | 3 |
| 2026-07-29 00:25:53 | LOW | 3 |
| 2026-07-28 00:07:28 | LOW | 3 |
| 2026-07-27 00:24:32 | LOW | 3 |
| 2026-07-26 00:07:32 | LOW | 3 |
| 2026-07-25 00:13:44 | LOW | 3 |
| 2026-07-24 00:02:28 | LOW | 3 |
| 2026-07-23 00:14:47 | LOW | 3 |
| 2026-07-22 00:29:32 | LOW | 3 |
| 2026-07-21 00:24:15 | LOW | 3 |
| 2026-07-20 00:19:49 | LOW | 3 |
| 2026-07-19 00:17:08 | LOW | 3 |
| 2026-07-18 00:14:48 | LOW | 3 |
| 2026-07-17 00:06:16 | LOW | 3 |
| 2026-07-16 00:05:41 | LOW | 3 |
| 2026-07-15 00:09:25 | LOW | 3 |