landrop-bin
The package downloads prebuilt .deb files from the project's official release host (releases.landrop.app), which is plausibly controlled by the project; the files are verified with fixed, matching checksums, and the build process only extracts and installs them in standard locations without executing remote code.
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 prebuilt .deb files from the project's official release host (releases.landrop.app), which is plausibly controlled by the project; the files are verified with fixed, matching checksums, and the build process only extracts and installs them in standard locations without executing remote code.
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:27
source_x86_64=("https://releases.landrop.app/landrop-v2-electron/LANDrop-${pkgver}-linux-amd64.deb")
PKGBUILD
1 offending line(s) highlighted# Maintainer: Wei Hao <dolem.hao@gmail.com>
pkgname=landrop-bin
_pkgname=landrop
pkgver=2.7.2
pkgrel=3
pkgdesc="Drop any files to any devices on your LAN"
arch=('x86_64' 'aarch64')
url="https://landrop.app/"
license=('custom')
depends=(
'gtk3'
'libnotify'
'nss'
'libxss'
'libxtst'
'xdg-utils'
'at-spi2-core'
'util-linux-libs'
'libsecret'
)
optdepends=(
'libappindicator-gtk3: for system tray icon support'
)
provides=('landrop')
conflicts=('landrop' 'landrop-git')
install="${pkgname}.install"
source_x86_64=("https://releases.landrop.app/landrop-v2-electron/LANDrop-${pkgver}-linux-amd64.deb")
source_aarch64=("https://releases.landrop.app/landrop-v2-electron/LANDrop-${pkgver}-linux-arm64.deb")
sha256sums_x86_64=('2073c1472275811ca36bf29fa3ff319b1a11804cb674b029edca56a1e9d75703')
sha256sums_aarch64=('0dc5b3ae386567c861bff5b50451a16e81fa1d22fe24021780491f65d8c9bb3f')
prepare() {
if [ "$CARCH" = "x86_64" ]; then
_debarch="amd64"
else
_debarch="arm64"
fi
# Extract the deb package
bsdtar -xf "${srcdir}/LANDrop-${pkgver}-linux-${_debarch}.deb" -C "${srcdir}"
bsdtar -xf "${srcdir}/data.tar.xz" -C "${srcdir}"
}
package() {
# Copy application files
cp -r "${srcdir}/usr" "${pkgdir}/"
# Copy opt directory (contains the actual application)
mkdir -p "${pkgdir}/opt"
cp -r "${srcdir}/opt/LANDrop" "${pkgdir}/opt/"
# Fix permissions
chmod 755 "${pkgdir}/opt/LANDrop/landrop-v2-electron"
chmod 4755 "${pkgdir}/opt/LANDrop/chrome-sandbox"
# Create symlink for the binary
mkdir -p "${pkgdir}/usr/bin"
ln -sf "/opt/LANDrop/landrop-v2-electron" "${pkgdir}/usr/bin/landrop"
# Create a proper desktop file
cat > "${srcdir}/landrop.desktop" << EOF
[Desktop Entry]
Name=LANDrop
Exec=landrop %U
Terminal=false
Type=Application
Icon=landrop
StartupWMClass=LANDrop
Comment=Drop any files to any devices on your LAN.
Categories=Network;FileTransfer;
EOF
install -Dm644 "${srcdir}/landrop.desktop" "${pkgdir}/usr/share/applications/landrop.desktop"
# Make sure we don't install the original desktop file
rm -f "${pkgdir}/usr/share/applications/landrop-v2-electron.desktop"
# Install icons in multiple sizes for better desktop integration
# Use the app icon from resources directory
for size in 16 24 32 48 64 96 128 256 512 1024; do
install -Dm644 "${srcdir}/opt/LANDrop/resources/app.asar.unpacked/resources/icon/icon.png" \
"${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/landrop.png"
done
# Install license files
install -Dm644 "${srcdir}/opt/LANDrop/LICENSE.electron.txt" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.electron.txt"
}
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 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |