obs-plugin-browser
The package downloads a prebuilt CEF binary from obsproject.com, which is the official project domain, making it a legitimate source despite the static analyzer flagging the host as non-standard; the rest of the build uses verifiable source code from the project's own repository.
Triggered rules
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 a prebuilt CEF binary from obsproject.com, which is the official project domain, making it a legitimate source despite the static analyzer flagging the host as non-standard; the rest of the build uses verifiable source code from the project's own repository.
1 higher static finding superseded - not the current verdict (shown for transparency)
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:29
"https://cdn-fastly.obsproject.com/downloads/cef_binary_${_cef_version}_linux_x86_64_v5.tar.xz")
PKGBUILD
1 offending line(s) highlighted# Maintainer: Giovanni Santini <giovannisantini93@yahoo.it>
pkgname=obs-plugin-browser
pkgver=2.26.1
pkgrel=1
pkgdesc="Official OBS Studio browser plugin, packaged to work with the official Arch package."
arch=(x86_64)
url="https://github.com/ItachiSan/obs-browser-standalone"
license=(GPL-2.0)
depends=(
# Known dependencies
obs-studio
# Detected via namcap
nlohmann-json
at-spi2-core
libxdamage
libxrandr
)
makedepends=(
cmake
)
# Latest stable Git commit
_git_commit="9f42f966235ef1c1117b67bfa9ce0216a9e137cf"
# CEF prebuilt package here:
# https://github.com/obsproject/obs-studio/blob/master/build-aux/modules/99-cef.json
# The repo can do it for us, but it is bad practice, so we get it as source and point to it later.
_cef_version=6533
source=("obs-browser_${_git_commit}.tar.gz::${url}/archive/${_git_commit}.tar.gz"
"https://cdn-fastly.obsproject.com/downloads/cef_binary_${_cef_version}_linux_x86_64_v5.tar.xz")
sha256sums=('53e67dd2148c7502bad6e5c59651087f6fa88d7ec037ab1f71630bdba33b677e'
'df38ef6d8078895953d224a58dd811b83110b4f8644c5cd2b6246d04b0023ee6')
# Build vars
_git_repo="${url##*/}" # repo name, thanks to: https://unix.stackexchange.com/a/247636
_src_folder="${_git_repo}-${_git_commit}" # easier to cd
pkgver() {
cd "${_src_folder}"
_major="$(grep "#define OBS_BROWSER_VERSION_MAJOR" browser-version.h | cut -d' ' -f3)"
_minor="$(grep "#define OBS_BROWSER_VERSION_MINOR" browser-version.h | cut -d' ' -f3)"
_patch="$(grep "#define OBS_BROWSER_VERSION_PATCH" browser-version.h | cut -d' ' -f3)"
echo "${_major}.${_minor}.${_patch}"
}
prepare() {
# Point to the extracted tarball
cmake -S "${_src_folder}" . -B build \
-D CEF_ROOT_DIR="${srcdir}/cef_binary_${_cef_version}_linux_x86_64" \
-D CMAKE_INSTALL_PREFIX=/usr
}
build() {
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 15:48:43 | Medium | 1 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |