falcon-sensor
The PKGBUILD downloads a prebuilt proprietary binary (CrowdStrike Falcon Sensor .deb) from socfoundry.com, which is not CrowdStrike's official distribution domain (falcon.crowdstrike.com or similar). This is a third-party/personal host redistributing a closed-source security kernel module/EDR agent that runs with root privileges and deep system access. Even with a sha256sum check, the concern is whether socfoundry.com is an authorized redistribution point for CrowdStrike software — it is not. If this host is compromised or serves a tampered binary, the attacker gains full system access via a trusted security agent. The sha256sum provides integrity only against the specific file currently hosted, not authenticity. This is a genuine supply-chain concern: an executed binary from an unofficial host, not CrowdStrike's own infrastructure. The MEDIUM rating is correct and well-founded.
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:40
source=("falcon-sensor_${_pkgver}-${_pkgrel}_amd64.deb::https://socfoundry.com/downloads/falcon-sensor_${_pkgver}-${_pkgrel}_amd64.deb"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 85%): The PKGBUILD downloads a prebuilt proprietary binary (CrowdStrike Falcon Sensor .deb) from socfoundry.com, which is not CrowdStrike's official distribution domain (falcon.crowdstrike.com or similar). This is a third-party/personal host redistributing a closed-source security kernel module/EDR agent that runs with root privileges and deep system access. Even with a sha256sum check, the concern is whether socfoundry.com is an authorized redistribution point for CrowdStrike software — it is not. If this host is compromised or serves a tampered binary, the attacker gains full system access via a trusted security agent. The sha256sum provides integrity only against the specific file currently hosted, not authenticity. This is a genuine supply-chain concern: an executed binary from an unofficial host, not CrowdStrike's own infrastructure. The MEDIUM rating is correct and well-founded.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Kyle Thompson <kylejeromethompson@gmail.com>
#
# --- DISCLAIMER ---
# This PKGBUILD is an unofficial community contribution. It is not affiliated with,
# endorsed, or supported by CrowdStrike, Inc.
#
# The CrowdStrike Falcon sensor is proprietary software. By building and installing
# this package, you acknowledge that you are downloading software directly from
# CrowdStrike and agree to be bound by their End User License Agreement and
# Privacy Notice. You are solely responsible for ensuring you have a valid
# license to use the software.
#
# This installation script is provided "AS IS" without warranty of any kind,
# express or implied. The user assumes all risk and responsibility for its use.
#
# Terms of Use: https://www.crowdstrike.com/software-terms-of-use/
# Privacy Notice: https://www.crowdstrike.com/privacy-notice/
# --- Package Information ---
pkgname='falcon-sensor'
pkgdesc="CrowdStrike Falcon Sensor for Linux"
arch=('x86_64')
url="https://falcon.crowdstrike.com/"
license=('custom')
# --- Versioning ---
_pkgver='7.32.0'
_pkgrel='18504'
pkgver=${_pkgver}
pkgrel=${_pkgrel}
# --- Dependencies and Conflicts ---
depends=('glibc' 'openssl')
provides=("${pkgname}")
conflicts=("${pkgname}")
install="${pkgname}.install"
# --- Source Files ---
source=("falcon-sensor_${_pkgver}-${_pkgrel}_amd64.deb::https://socfoundry.com/downloads/falcon-sensor_${_pkgver}-${_pkgrel}_amd64.deb"
"falcon-sensor.hook")
sha256sums=('0c3ac12e749647cd05a8e8bd6281541e5ba8496ca1ba042eda6637f547db5dc0'
'SKIP')
# --- Packaging Function ---
package() {
# Extract the data archive from the .deb file
tar -xf "${srcdir}/data.tar.xz" -C "${pkgdir}/"
# Create the destination directory structure first (-p creates parent dirs if needed)
mkdir -p "${pkgdir}/usr/lib/"
# Move the contents of the extracted 'lib' directory to '/usr/lib' inside the package
mv "${pkgdir}/lib"/* "${pkgdir}/usr/lib/"
# Remove the now-empty 'lib' directory from the package
rmdir "${pkgdir}/lib"
# Install pacman hook to clean up runtime-generated files before upgrades
install -Dm644 "${srcdir}/falcon-sensor.hook" "${pkgdir}/usr/share/libalpm/hooks/falcon-sensor.hook"
}
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 |