idos-timetable-additionalinfo-chaps-bus-latest
maintainer dreieck
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads data files from a project-owned but non-whitelisted host; the content is non-executable floor plans, and the worst case of a swapped source is data tampering, not code execution.
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 data files from a project-owned but non-whitelisted host; the content is non-executable floor plans, and the worst case of a swapped source is data tampering, not code execution.
1 higher static finding superseded - not the current verdict (shown for transparency)
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:51
"${_target}::https://ttakt.chaps.cz/TTAktual/Win/Zip/${_zipfile}" -
PKGBUILD:52
"IDOS-Licence.pdf::https://chaps.cz/files/idos/IDOS-Licence.pdf"
PKGBUILD
2 offending line(s) highlighted
1
# Maintainer: dreieck
2
3
# PKGBUILD last time manually edited: At least on 2024-12-17.
4
url="https://chaps.cz/eng/download/idos/zip#kotvainf"
5
_zipfile="C2.ZIP"
6
_pkgver() {
7
# Reason for a _pkgver(): Have something to run before source download so that we can have version aware source downloads.
8
# date -r "${srcdir}/${_target}" +"%Y_%m_%d"
9
wget -nv -O- "${url}" | tr -d '\a' | tr '\n' '\a' | sed 's|^.*File '"${_zipfile}"'\(.*\)Zip/'"${_zipfile}"'.*$|\1\n|g' | tr '\a' '\n' | grep 'Update date:' | cut -d, -f1 | sed -r 's|([0-9]+)\.([0-9]+)\.([0-9]+).|\n\3_\2_\1\n|g' | grep -E '^[0-9]+_[0-9]+_[0-9]+' | sed -E -e 's|_([0-9])_|_0\1_|g' -e 's|_([0-9])$|_0\1|g'
10
}
11
12
_pkgname=idos-timetable-additionalinfo-chaps-bus
13
pkgname="${_pkgname}-latest"
14
epoch=0
15
_pkgver="$(_pkgver)" # This should be set _before_ sources get downloaded.
16
pkgver="${_pkgver}"
17
pkgrel=1
18
pkgdesc="Floor plans of some Czech bus stations/ stops, to be used with the timetable search engines by CHAPS."
19
arch=('any')
20
license=('custom')
21
22
groups=(
23
"idos-timetable"
24
)
25
26
depends=(
27
"idos-timetable-data-bus-cz"
28
)
29
30
makedepends=(
31
"wget"
32
)
33
34
optdepends=()
35
36
provides=(
37
"${_pkgname}=${pkgver}"
38
39
"idos-timetable-additionalinfo-bus=${pkgver}"
40
41
"idos-timetable-additionalinfo-bus-cz=${pkgver}"
42
)
43
44
conflicts=(
45
"${_pkgname}"
46
)
47
48
_target="c2-${_pkgver}.zip"
49
50
source=(
51
"${_target}::https://ttakt.chaps.cz/TTAktual/Win/Zip/${_zipfile}"
52
"IDOS-Licence.pdf::https://chaps.cz/files/idos/IDOS-Licence.pdf"
53
"license-dummy.txt"
54
)
55
56
sha256sums=(
57
'SKIP'
58
"SKIP"
59
"c6bb216055d3670d3100b7a74e04ce0644030f365f4349a09e630ef60fbcb9a4"
60
)
61
62
pkgver() {
63
printf '%s' "${_pkgver}"
64
}
65
66
67
package() {
68
_instdirbase='/opt/idos-timetable'
69
_instdir="${pkgdir}/${_instdirbase}"
70
install -d -m755 "${_instdir}"
71
72
cp -r "${srcdir}"/Data* "${_instdir}/"
73
chmod 755 "${_instdir}"/Data*
74
chmod 755 "${_instdir}"/Data*/*
75
chmod 644 "${_instdir}"/Data*/*/*
76
77
install -d -m755 "${pkgdir}/usr/share/doc/${_pkgname}"
78
echo "${url}" > "${pkgdir}/usr/share/doc/${_pkgname}/info.url"
79
chmod 644 "${pkgdir}/usr/share/doc/${_pkgname}/info.url"
80
81
install -D -m644 "${srcdir}/license-dummy.txt" "${pkgdir}/usr/share/licenses/${pkgname}/copying.txt"
82
install -D -m644 "${srcdir}/IDOS-Licence.pdf" "${pkgdir}/usr/share/licenses/${pkgname}/IDOS-Licence.pdf"
83
}
84
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 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |