brother-hl6180dw-cups-bin
maintainer ViBoSchu
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads a prebuilt .deb from Brother's official download domain for a proprietary CUPS wrapper, which is normal for such drivers; the source is not whitelisted but is from the vendor's legitimate infrastructure, and the checksum is verified.
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 downloads a prebuilt .deb from Brother's official download domain for a proprietary CUPS wrapper, which is normal for such drivers; the source is not whitelisted but is from the vendor's legitimate infrastructure, and the checksum is verified.
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:28
source=("${_deb}::https://download.brother.com/welcome/dlf006043/${_deb}")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Vincent Schult <viboschu@gmail.com>
2
3
pkgname=brother-hl6180dw-cups-bin
4
pkgver=3.0.0_1
5
pkgrel=2
6
pkgdesc='CUPS wrapper for Brother HL-6180DW printer'
7
arch=('i686' 'x86_64')
8
url='https://support.brother.com/g/b/producttop.aspx?c=us&lang=en&prod=hl6180dw_all'
9
license=('GPL-2.0-or-later')
10
11
depends=(
12
cups
13
"brother-hl6180dw-lpr-bin=${pkgver}"
14
sh
15
)
16
depends_i686=(
17
glibc
18
)
19
depends_x86_64=(
20
lib32-glibc
21
)
22
23
options=('!strip' '!debug' '!emptydirs')
24
25
_deb="hl6180dwcupswrapper-${pkgver/_/-}.i386.deb"
26
_vendor='/opt/brother/Printers/HL6180DW/cupswrapper'
27
28
source=("${_deb}::https://download.brother.com/welcome/dlf006043/${_deb}")
29
noextract=("${_deb}")
30
31
sha256sums=('2c47d5903df23084d095f23cdbf3cb1ae0fd1700d3201368ab03730495d25b13')
32
33
prepare(){
34
cd "${srcdir}"
35
rm -rf deb-root
36
mkdir -p deb-root
37
bsdtar -xf "${_deb}" -C deb-root
38
}
39
40
package(){
41
local data_tar=("${srcdir}/deb-root"/data.tar.*)
42
43
bsdtar -xf "${data_tar[0]}" -C "${pkgdir}"
44
45
install -Dm755 "${pkgdir}${_vendor}/brother_lpdwrapper_HL6180DW" "${pkgdir}/usr/lib/cups/filter/brother_lpdwrapper_HL6180DW"
46
47
install -Dm644 "${pkgdir}${_vendor}/brother-HL-6180DW-cups-en.ppd" "${pkgdir}/usr/share/cups/model/HL6180DW.ppd"
48
49
rm -f "${pkgdir}${_vendor}/brother_lpdwrapper_HL6180DW" "${pkgdir}${_vendor}/brother-HL-6180DW-cups-en.ppd"
50
}
51
Changes since previous scan
--- PKGBUILD @ 2026-08-01 00:11+++ PKGBUILD @ 2026-08-03 00:08@@ -1,17 +1,51 @@-# Maintainer: Vincent Bogdan Schult <viboschu@gmail.com>+# Maintainer: Vincent Schult <viboschu@gmail.com> pkgname=brother-hl6180dw-cups-bin pkgver=3.0.0_1-pkgrel=1-pkgdesc="CUPS wrapper for Brother HL-6180DW printer"-arch=("i686" "x86_64")-url="https://support.brother.com/g/b/producttop.aspx?c=us&lang=en&prod=hl6180dw_all"-license=("EULA")-groups=("base-devel")-source=("http://www.brother.com/pub/bsc/linux/dlf/hl6180dwcupswrapper-3.0.0-1.i386.deb")-md5sums=("0683cb26b82a5f5e64012d135685e108")+pkgrel=2+pkgdesc='CUPS wrapper for Brother HL-6180DW printer'+arch=('i686' 'x86_64')+url='https://support.brother.com/g/b/producttop.aspx?c=us&lang=en&prod=hl6180dw_all'+license=('GPL-2.0-or-later') -package() {- tar -xf data.tar.gz -C "${pkgdir}"+depends=(+ cups+ "brother-hl6180dw-lpr-bin=${pkgver}"+ sh+)+depends_i686=(+ glibc+)+depends_x86_64=(+ lib32-glibc+)++options=('!strip' '!debug' '!emptydirs')++_deb="hl6180dwcupswrapper-${pkgver/_/-}.i386.deb"+_vendor='/opt/brother/Printers/HL6180DW/cupswrapper'++source=("${_deb}::https://download.brother.com/welcome/dlf006043/${_deb}")+noextract=("${_deb}")++sha256sums=('2c47d5903df23084d095f23cdbf3cb1ae0fd1700d3201368ab03730495d25b13')++prepare(){+ cd "${srcdir}"+ rm -rf deb-root+ mkdir -p deb-root+ bsdtar -xf "${_deb}" -C deb-root } +package(){+ local data_tar=("${srcdir}/deb-root"/data.tar.*)++ bsdtar -xf "${data_tar[0]}" -C "${pkgdir}"++ install -Dm755 "${pkgdir}${_vendor}/brother_lpdwrapper_HL6180DW" "${pkgdir}/usr/lib/cups/filter/brother_lpdwrapper_HL6180DW"++ install -Dm644 "${pkgdir}${_vendor}/brother-HL-6180DW-cups-en.ppd" "${pkgdir}/usr/share/cups/model/HL6180DW.ppd"++ rm -f "${pkgdir}${_vendor}/brother_lpdwrapper_HL6180DW" "${pkgdir}${_vendor}/brother-HL-6180DW-cups-en.ppd"+}+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 13:20:32 | MEDIUM | 1 |
| 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 |