obd-auto-doctor
This PKGBUILD downloads and installs a prebuilt proprietary binary (obdautodoctor) from cdn.obdautodoctor.com over plain HTTP (no TLS), then installs it directly as an executable. The concerns are: (1) the download uses HTTP, not HTTPS, making it trivially interceptable/substitutable by a MITM attacker despite the SHA1 checksums (SHA1 is also weak for integrity guarantees); (2) the binary comes from the vendor's own CDN, which is a plausible official distribution channel for this commercial OBD software, but it is not a well-known, audited package repository; (3) the binary is installed as a setuid-free executable, so no privilege escalation beyond normal user execution. This is a classic medium-risk pattern: a prebuilt closed-source binary from a vendor CDN over HTTP. It is not clearly malicious, but the combination of HTTP transport, SHA1 checksums, and an opaque proprietary binary warrants a medium rating.
Triggered rules
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:9
source_i686=("http://cdn.obdautodoctor.com/${pkgname}_${pkgver}_i386.tar.gz")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): This PKGBUILD downloads and installs a prebuilt proprietary binary (obdautodoctor) from cdn.obdautodoctor.com over plain HTTP (no TLS), then installs it directly as an executable. The concerns are: (1) the download uses HTTP, not HTTPS, making it trivially interceptable/substitutable by a MITM attacker despite the SHA1 checksums (SHA1 is also weak for integrity guarantees); (2) the binary comes from the vendor's own CDN, which is a plausible official distribution channel for this commercial OBD software, but it is not a well-known, audited package repository; (3) the binary is installed as a setuid-free executable, so no privilege escalation beyond normal user execution. This is a classic medium-risk pattern: a prebuilt closed-source binary from a vendor CDN over HTTP. It is not clearly malicious, but the combination of HTTP transport, SHA1 checksums, and an opaque proprietary binary warrants a medium rating.
PKGBUILD
1 offending line(s) highlightedpkgname=obd-auto-doctor
pkgver=3.7.4
pkgrel=1
pkgdesc="obd scan and diagnostics"
arch=('i686' 'x86_64')
url="http://www.obdautodoctor.com/"
license=('proprietary')
source_i686=("http://cdn.obdautodoctor.com/${pkgname}_${pkgver}_i386.tar.gz")
source_x86_64=("http://cdn.obdautodoctor.com/${pkgname}_${pkgver}_amd64.tar.gz")
sha1sums_i686=('12a555b5ccddea50318c991f33910b8c2c0e2184')
sha1sums_x86_64=('43d0c14828a4b08893497dafbb5c2435888ae663')
depends=("qt5-base>=5.9.5")
optdepends=("bluez: for bluetooth support" "bluez-libs")
[[ "$CARCH" = "i686" ]] && _parch='i386'
[[ "$CARCH" = "x86_64" ]] && _parch='amd64'
package() {
cd "$srcdir/obdautodoctor"
install -D -m755 "./obdautodoctor" "${pkgdir}/usr/bin/obdautodoctor"
install -D -m644 "./obdautodoctor.desktop" "${pkgdir}/usr/share/applications/obdautodoctor.desktop"
install -D -m644 "./obdautodoctor.png" "${pkgdir}/usr/share/pixmaps/obdautodoctor.png"
install -D -m644 "./license.txt" "${pkgdir}/usr/share/licenses/obdautodoctor/LICENSE"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Medium | 2 |
| 2026-09-16 00:03:17 | Medium | 2 |
| 2026-09-15 00:25:31 | Medium | 2 |
| 2026-09-14 00:27:57 | Medium | 2 |
| 2026-09-13 00:19:54 | Medium | 2 |
| 2026-09-12 00:25:17 | Medium | 2 |
| 2026-09-11 00:19:22 | Medium | 2 |
| 2026-09-10 00:22:44 | Medium | 2 |
| 2026-09-09 00:04:09 | Medium | 2 |
| 2026-09-08 00:18:08 | Medium | 2 |
| 2026-09-07 00:30:15 | Medium | 2 |
| 2026-09-06 00:17:06 | Medium | 2 |
| 2026-09-05 00:16:27 | Medium | 2 |
| 2026-09-04 00:03:13 | Medium | 2 |
| 2026-09-03 00:15:47 | Medium | 2 |
| 2026-09-02 00:02:31 | Medium | 2 |
| 2026-09-01 00:11:19 | Medium | 2 |
| 2026-08-31 00:19:57 | Medium | 2 |
| 2026-08-30 00:04:14 | Medium | 2 |
| 2026-08-29 00:29:17 | Medium | 2 |