bouml
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:16
source_x86_64=("v${pkgver}-64.tar.gz::https://www.bouml.fr/files/$pkgname-${pkgver%\.0}-CentOS7.x86_64.rpm")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The package downloads prebuilt RPM binaries (containing executables and libraries) from bouml.fr, which is the official upstream website for the BOUML UML tool. This is not a random personal host — it is the project's own domain matching the `url` field. However, the binaries are precompiled RPMs for CentOS 6/7 being repackaged for Arch Linux without any build step, meaning users execute binaries that cannot be audited from source. The sha256sums also appear malformed for i686 (the checksum line includes the filename inline, which is not valid PKGBUILD syntax and would likely cause makepkg to fail verification). While bouml.fr is the legitimate upstream, distributing prebuilt closed binaries from any host — even the official one — without source compilation is a genuine supply-chain concern since there is no way to verify the binary matches the GPL source. This is a real medium-risk pattern (executed binary from a non-Arch-official host, no source build), though not clearly malicious.
PKGBUILD
1 offending line(s) highlighted#!/bin/bash
# Maintainer: Stick <stick@stma.is>
# Contributor: Nissar Chababy <funilrys@outlook.com>
# Contributor: Jorge Barroso <jorge.barroso.11@gmail.com>
# Contributor: cros_145<joner14@hotmail.com>
# shellcheck disable=SC2034,SC2154
pkgname=bouml
pkgver=7.11.0
pkgrel=1
pkgdesc='A free UML 2 tool box including a modeler allowing you to specify and generate code in C++, Java, IDL, PHP, Python, and MySQL'
arch=('i686' 'x86_64')
url='https://bouml.fr/'
license=('GPL')
depends=('qt4')
source_x86_64=("v${pkgver}-64.tar.gz::https://www.bouml.fr/files/$pkgname-${pkgver%\.0}-CentOS7.x86_64.rpm")
source_i686=("v${pkgver}-32.tar.gz::https://www.bouml.fr/files/$pkgname-${pkgver%\.0}-CentOS6.i686.rpm")
sha256sums_x86_64=('2ade4ec5a68b4dabfb1933e264ae5f183599aa3170c4274ddf2edb863236c57b')
sha256sums_i686=('f4c06e53e216fff499523d529a02b5900d7501adb17aa2b173090bea5b4063cf bouml-7.11-CentOS6.i686.rpm')
package() {
mkdir -p "$pkgdir"/usr/bin/
mkdir -p "$pkgdir"/usr/share/applications/
mkdir -p "$pkgdir"/usr/share/icons
cp -R "$srcdir"/usr/bin/* "$pkgdir"/usr/bin/
cp -R "$srcdir"/usr/share/applications/* "$pkgdir"/usr/share/applications/
cp -R "$srcdir"/usr/share/icons/* "$pkgdir"/usr/share/icons/
mkdir -p "$pkgdir"/usr/lib/bouml
if [ "$CARCH" = "x86_64" ]; then
cp -R "$srcdir"/usr/lib64/bouml/* "$pkgdir"/usr/lib/bouml/
else
cp -R "$srcdir"/usr/lib/bouml/* "$pkgdir"/usr/lib/bouml/
fi
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | MEDIUM | 2 |
| 2026-08-02 00:16:08 | MEDIUM | 2 |
| 2026-08-01 00:11:18 | MEDIUM | 2 |
| 2026-07-31 00:14:10 | MEDIUM | 2 |
| 2026-07-30 00:17:23 | MEDIUM | 2 |
| 2026-07-29 00:25:53 | MEDIUM | 2 |
| 2026-07-28 00:07:28 | MEDIUM | 2 |
| 2026-07-27 00:24:32 | MEDIUM | 2 |
| 2026-07-26 00:07:32 | MEDIUM | 2 |
| 2026-07-25 00:13:44 | MEDIUM | 2 |
| 2026-07-24 00:02:28 | MEDIUM | 2 |
| 2026-07-23 00:14:47 | MEDIUM | 2 |
| 2026-07-22 00:29:32 | MEDIUM | 2 |
| 2026-07-21 00:24:15 | MEDIUM | 2 |
| 2026-07-20 00:19:49 | MEDIUM | 2 |
| 2026-07-19 00:17:08 | MEDIUM | 2 |
| 2026-07-18 00:14:48 | MEDIUM | 2 |
| 2026-07-17 00:06:16 | MEDIUM | 2 |
| 2026-07-16 00:05:41 | MEDIUM | 2 |
| 2026-07-15 00:09:25 | MEDIUM | 2 |