obs-plugin-browser
maintainer ItachiSan
· 3 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
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
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 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)
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:29
"https://cdn-fastly.obsproject.com/downloads/cef_binary_${_cef_version}_linux_x86_64_v5.tar.xz")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Giovanni Santini <giovannisantini93@yahoo.it>
2
pkgname=obs-plugin-browser
3
pkgver=2.26.1
4
pkgrel=1
5
pkgdesc="Official OBS Studio browser plugin, packaged to work with the official Arch package."
6
arch=(x86_64)
7
url="https://github.com/ItachiSan/obs-browser-standalone"
8
license=(GPL-2.0)
9
depends=(
10
# Known dependencies
11
obs-studio
12
# Detected via namcap
13
nlohmann-json
14
at-spi2-core
15
libxdamage
16
libxrandr
17
)
18
makedepends=(
19
cmake
20
)
21
22
# Latest stable Git commit
23
_git_commit="9f42f966235ef1c1117b67bfa9ce0216a9e137cf"
24
# CEF prebuilt package here:
25
# https://github.com/obsproject/obs-studio/blob/master/build-aux/modules/99-cef.json
26
# The repo can do it for us, but it is bad practice, so we get it as source and point to it later.
27
_cef_version=6533
28
source=("obs-browser_${_git_commit}.tar.gz::${url}/archive/${_git_commit}.tar.gz"
29
"https://cdn-fastly.obsproject.com/downloads/cef_binary_${_cef_version}_linux_x86_64_v5.tar.xz")
30
31
sha256sums=('53e67dd2148c7502bad6e5c59651087f6fa88d7ec037ab1f71630bdba33b677e'
32
'df38ef6d8078895953d224a58dd811b83110b4f8644c5cd2b6246d04b0023ee6')
33
34
# Build vars
35
_git_repo="${url##*/}" # repo name, thanks to: https://unix.stackexchange.com/a/247636
36
_src_folder="${_git_repo}-${_git_commit}" # easier to cd
37
38
pkgver() {
39
cd "${_src_folder}"
40
41
_major="$(grep "#define OBS_BROWSER_VERSION_MAJOR" browser-version.h | cut -d' ' -f3)"
42
_minor="$(grep "#define OBS_BROWSER_VERSION_MINOR" browser-version.h | cut -d' ' -f3)"
43
_patch="$(grep "#define OBS_BROWSER_VERSION_PATCH" browser-version.h | cut -d' ' -f3)"
44
echo "${_major}.${_minor}.${_patch}"
45
}
46
47
prepare() {
48
# Point to the extracted tarball
49
cmake -S "${_src_folder}" . -B build \
50
-D CEF_ROOT_DIR="${srcdir}/cef_binary_${_cef_version}_linux_x86_64" \
51
-D CMAKE_INSTALL_PREFIX=/usr
52
}
53
54
build() {
55
cmake --build build
56
}
57
58
package() {
59
DESTDIR="$pkgdir" cmake --install build
60
}
61
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 |