iscan-plugin-gt-s650
maintainer vitaliikuzhdin
· 12 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads official Epson driver bundles from Epson's own domain (ebz.epson.net), which is plausibly the project's official source; despite being flagged for a non-standard host, the content is verifiable via checksums and consists of legitimate driver binaries, not malicious or unreviewed code.
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 official Epson driver bundles from Epson's own domain (ebz.epson.net), which is plausibly the project's official source; despite being flagged for a non-standard host, the content is verifiable via checksums and consists of legitimate driver binaries, not malicious or unreviewed code.
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:33
"https://download2.ebz.epson.net/iscan/plugin/${_product}/deb/x86/iscan-${_product}-bundle-${_bundlever}.x86.deb.tar.gz" -
PKGBUILD:34
"https://download3.ebz.epson.net/dsc/f/03/00/15/87/27/a2f4b9c48258de4e0c8082509a94060aa0ce7c61/epsonscan2-bundle-${_scanver}.i686.deb.tar.gz"
PKGBUILD
2 offending line(s) highlighted
1
# Maintainer: Vitalii Kuzhdin <vitaliikuzhdin@gmail.com>
2
# Contributor: Muflone https://www.muflone.com/contacts/english/
3
4
_product="gt-s650"
5
pkgname="iscan-plugin-${_product}"
6
pkgver=2.30.4+1.1.1_1
7
_bundlever="${pkgver%+*}"
8
_pluginver="${pkgver##*+}"
9
_scanver="6.7.65.0"
10
_scanpluginver="1.0.0.6_1"
11
pkgrel=2
12
pkgdesc="EPSON Image Scan! plugin for Epson scanners (DS, EP, ES, ET, EW, L, LX, PX, WF, XP Series, FF-640, GT-S650, Perfection V19, Perfection V39)"
13
arch=(
14
'i686'
15
'x86_64'
16
)
17
url="https://download-center.epson.com/search"
18
license=(
19
'custom:EPSON END USER SOFTWARE LICENSE AGREEMENT'
20
)
21
depends=(
22
'glibc'
23
'iscan'
24
'iscan-data'
25
'libgcc'
26
'libstdc++'
27
)
28
makedepends=(
29
'gzip'
30
)
31
install="${pkgname}.install"
32
source_i686=(
33
"https://download2.ebz.epson.net/iscan/plugin/${_product}/deb/x86/iscan-${_product}-bundle-${_bundlever}.x86.deb.tar.gz"
34
"https://download3.ebz.epson.net/dsc/f/03/00/15/87/27/a2f4b9c48258de4e0c8082509a94060aa0ce7c61/epsonscan2-bundle-${_scanver}.i686.deb.tar.gz"
35
)
36
source_x86_64=(
37
"https://download2.ebz.epson.net/iscan/plugin/${_product}/deb/x64/iscan-${_product}-bundle-${_bundlever}.x64.deb.tar.gz"
38
"https://download3.ebz.epson.net/dsc/f/03/00/15/87/26/2525daf2881161ddb0957e22601734bfedab5152/epsonscan2-bundle-${_scanver}.x86_64.deb.tar.gz"
39
)
40
sha256sums_i686=('657cd8d8e0e5dfcb305dde65c99d5fc085ad3eb5a889b048ef81bf99afa27d05'
41
'626baea9833265bc7c8e60ee08f94372ea81cb2b627239a4712a0411068241e2')
42
sha256sums_x86_64=('553eb55fef42ebcae562f3b8442d43093a16d8b53893da3b0d25396e81377949'
43
'66fe6bd9189dc67cd3d61c852eacc01ecaa1de59cc029d948d2199b38dca932d')
44
# DLAGENTS=(
45
# "https::/usr/bin/curl -A 'Mozilla' -fLC - --retry 3 --retry-delay 3 -o %o %u"
46
# )
47
48
prepare() {
49
local source_array_0="source_${CARCH}[0]"
50
local source_array_1="source_${CARCH}[1]"
51
local source_url_0="${!source_array_0}"
52
local source_url_1="${!source_array_1}"
53
local source_artifact_0="${source_url_0##*/}"
54
local source_artifact_1="${source_url_1##*/}"
55
56
cd "${srcdir}/${source_artifact_1%.tar*}"
57
local source_plugin_1="$(ls plugins/*${_scanpluginver//_/-}*.deb | head -n1)"
58
mkdir -p "${source_plugin_1%.deb}"
59
bsdtar -xf "${source_plugin_1}" data.tar.*
60
bsdtar -xzf data.tar.* --strip-components 1 -C "${source_plugin_1%.deb}"
61
rm -f data.tar.*
62
63
cd "${srcdir}/${source_artifact_0%.tar*}"
64
local source_plugin_0="$(ls plugins/*${_pluginver//_/-}*.deb | head -n1)"
65
mkdir -p "${source_plugin_0%.deb}"
66
bsdtar -xf "${source_plugin_0}" data.tar.*
67
bsdtar -xzf data.tar.* --strip-components 1 -C "${source_plugin_0%.deb}"
68
rm -f data.tar.*
69
70
cd "${source_plugin_0%.deb}"
71
find . -type f -name '*.gz' -exec \
72
gzip -fd "{}" \;
73
74
cd "usr/share"
75
rm -f "doc/${pkgname}/"{copyright,*Debian}
76
77
mkdir -p "licenses/${pkgname}"
78
mv -f "doc/${pkgname}/COPYING"* "licenses/${pkgname}"
79
80
cd "iscan"
81
find . -type f -name '*.bin' -exec \
82
cp -vf "${srcdir}/${source_artifact_1%.tar*}/${source_plugin_1%.deb}/usr/share/epsonscan2/{}" . \;
83
}
84
85
package() {
86
local source_array_0="source_${CARCH}[0]"
87
local source_url_0="${!source_array_0}"
88
local source_artifact_0="${source_url_0##*/}"
89
90
cd "${srcdir}/${source_artifact_0%.tar*}"
91
local source_plugin_0="$(ls plugins/*${_pluginver//_/-}*.deb | head -n1)"
92
cp -vaT --no-preserve=ownership "${source_plugin_0%.deb}" "${pkgdir}"
93
}
94
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 |