eddie-cli
The flagged download from eddie.website is for a changelog used in packaging, not code execution; the software is built from source hosted on GitHub, and no untrusted binaries are installed or executed.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The flagged download from eddie.website is for a changelog used in packaging, not code execution; the software is built from source hosted on GitHub, and no untrusted binaries are installed or executed.
1 higher static finding superseded - not the current verdict (shown for transparency)
external_download_not_in_source
curl/wget fetches a URL on a non-allowlisted host that is not part of source=(), so it is not checksum-verified by makepkg.
-
PKGBUILD:123
curl "https://eddie.website/changelog/?software=client&format=debian&hidden=yes" -o "changelog"
PKGBUILD
1 offending line(s) highlighted# Maintainer: Eddie.website <maintainer@eddie.website>
# Based on work by Uncle Hunto <unclehunto äτ ÝãΗ00 Ð0τ ÇÖΜ> and Beini <bane aτ iki dot fi>
pkgname=eddie-cli
pkgver=2.26.2
pkgrel=1
pkgdesc='Eddie - VPN tunnel - CLI'
arch=('x86_64' 'aarch64' 'armv7l')
url=https://eddie.website
license=(GPLv3)
depends=(curl openvpn sudo)
optdepends=('stunnel: VPN over SSL' 'openssh: VPN over SSH')
makedepends=(git cmake patchelf 'dotnet-runtime>=10' 'dotnet-sdk>=10')
provides=('eddie-cli')
conflicts=('airvpn' 'airvpn-beta-bin' 'airvpn-git')
install=eddie-cli.install
source=('https://github.com/AirVPN/Eddie/archive/2.26.2.tar.gz')
sha1sums=('077f820a53469a0737fd2d1dd7c043708398f21f')
options=('!strip') # Incompatible with net10
LINE="l"
ARCH=$CARCH
RID=linux-$CARCH
if [ "$RID" = "linux-x86_64" ]; then
ARCH=x64
RID=linux-x64
elif [ "$RID" = "linux-aarch64" ]; then
RID=linux-arm64
elif [ "$RID" = "linux-armv7l" ]; then
RID=linux-arm
fi
build() {
CONFIG=Release
cd "Eddie-$pkgver"
# CLI
if true; then
chmod +x src/App.CLI.Linux/postbuild.sh
chmod +x src/Lib.Platform.Linux.Native/build.sh
cd "src/App.CLI.Linux/"
dotnet publish App.CLI.Linux.net10.csproj --configuration ${CONFIG} --runtime ${RID} --self-contained true -p:PublishTrimmed=true -p:EnableCompressionInSingleFile=true
cd "../../"
fi
# UI
if [ "cli" = "ui" ]; then
if [ "$LINE" = "u" ]; then
mkdir -p src/App.UI.Linux/bin
g++ \
src/App.UI.Linux/src/main.cpp \
src/App.UI.Linux/src/appgtk.cpp \
src/App.UI.Linux/src/iapplinux.cpp \
src/Lib.UI/src/iappposix.cpp \
src/Lib.UI/src/iapp.cpp \
-std=c++17 \
-o src/App.UI.Linux/bin/eddie-ui \
$(pkg-config --cflags --libs gtk+-3.0 ayatana-appindicator3-0.1 webkit2gtk-4.1)
strip -S --strip-unneeded src/App.UI.Linux/bin/eddie-ui
patchelf --set-rpath '$ORIGIN' src/App.UI.Linux/bin/eddie-ui
chmod a+x src/App.UI.Linux/bin/eddie-ui
elif [ "$LINE" = "l" ]; then
# Note: x64 in path hardcoded, correct, net4 build are CIL
export TERM=xterm # Fix Mono bug "Magic number is wrong".
TARGETFRAMEWORK="v4.8"; # Mono does not support TargetFrameworkVersion v4.8.1.
RULESETPATH="src/ruleset/norules.ruleset"
SOLUTIONPATH="src/App.Forms.Linux//App.Forms.Linux.sln"
# clean temporary files from net10 compilation above, otherwise throw 'Your project does not reference ".NETFramework,Version=v4.8"'
rm -rf "src/Lib.Core/bin"
rm -rf "src/Lib.Core/obj"
rm -rf "src/Lib.Platform.Linux/bin"
rm -rf "src/Lib.Platform.Linux/obj"
# msbuild is available when monodevelop is installed (reccomended)
# xbuild is available when mono-complete is installed (deprecated)
msbuild /verbosity:minimal /p:Configuration=${CONFIG} /p:Platform=x64 /p:TargetFrameworkVersion=${TARGETFRAMEWORK} /t:Rebuild "${SOLUTIONPATH}" /p:DefineConstants="EDDIEMONO4LINUX"
# msbuild/Mono under Linux don't honor the postbuild event, called manually
"src/App.Forms.Linux/postbuild.sh" "src/App.Forms.Linux/bin/x64/${CONFIG}/" ${ARCH} ${CONFIG}
# mkbundle
if [ $ARCH = "x64" ]; then
MKBUNDLECROSSTARGET="mono-6.8.0-debian-10-x64"
elif [ $ARCH = "armv7l" ]; then
MKBUNDLECROSSTARGET="mono-6.0.0-raspbian-9-arm"
elif [ $ARCH = "aarch64" ]; then
MKBUNDLECROSSTARGET="mono-6.6.0-debian-10-arm64"
else
MKBUNDLECROSSTARGET="mono-6.8.0-debian-10-${ARCH}"
fi
# Issue here, check with 'mkbundle --list-targets'
#mkdir -p /home/pi/.mono/targets/${MKBUNDLECROSSTARGET}/lib/mono # Not sure if need
if [[ ! -d ${HOME}/.mono/targets/${MKBUNDLECROSSTARGET} ]]; then
echo Download mkbundle target. If break here, check with 'mkbundle --list-targets' and fix build.sh MKBUNDLECROSSTARGET
mkbundle --fetch-target ${MKBUNDLECROSSTARGET}
fi
# Update config
cp ${HOME}/.mono/targets/${MKBUNDLECROSSTARGET}/etc/mono/config src/App.Forms.Linux/bin/x64/Release/mkbundle.config
sed -i 's/\$mono_libdir\///g' src/App.Forms.Linux/bin/x64/Release/mkbundle.config
cd src/App.Forms.Linux/bin/x64/Release/
mkbundle App.Forms.Linux.exe -o eddie-ui --cross ${MKBUNDLECROSSTARGET} --i18n all --config mkbundle.config --library ../../../../../repository/linux_portable/mkbundle/${ARCH}/libMonoPosixHelper.so --library ../../../../../repository/linux_portable/mkbundle/${ARCH}/libgdiplus.so.0 --library /usr/lib/libmono-native.so
cd ../../../../..
fi
fi
# Generate changelog
curl "https://eddie.website/changelog/?software=client&format=debian&hidden=yes" -o "changelog"
gzip -n -9 -f "changelog"
if [ "cli" = "cli" ]; then
# Generate man
"src/App.CLI.Linux/bin/Release/net10.0/${RID}/publish/eddie-cli" --path.resources="../../../../../../resources" --help --help.format=man >"eddie-cli.8"
gzip -n -9 -f "eddie-cli.8"
fi
}
package() {
cd "Eddie-$pkgver"
install -Dm755 "repository/linux_arch/bundle/eddie-cli/usr/bin/eddie-cli" "$pkgdir/usr/bin/eddie-cli"
install -Dm644 "resources/eddie-vpn.txt" "$pkgdir/usr/share/eddie-cli/eddie-vpn.txt"
install -Dm644 "resources/manifest.json" "$pkgdir/usr/share/eddie-cli/manifest.json"
install -Dm644 "resources/libraries.txt" "$pkgdir/usr/share/eddie-cli/libraries.txt"
install -Dm644 "resources/gpl3.txt" "$pkgdir/usr/share/eddie-cli/gpl3.txt"
install -Dm644 "resources/cacert.pem" "$pkgdir/usr/share/eddie-cli/cacert.pem"
install -Dm644 "resources/iso-3166.json" "$pkgdir/usr/share/eddie-cli/iso-3166.json"
install -Dm644 "resources/locales/inv.json" "$pkgdir/usr/share/eddie-cli/locales/inv.json"
install -Dm644 "resources/icons/appindicator.png" "$pkgdir/usr/share/eddie-cli/icons/appindicator.png"
install -Dm644 "resources/icons/appindicator-gray.png" "$pkgdir/usr/share/eddie-cli/icons/appindicator-gray.png"
install -Dm644 "resources/icons/notifyicon.ico" "$pkgdir/usr/share/eddie-cli/icons/notifyicon.ico"
install -Dm644 "resources/icons/notifyicon-gray.ico" "$pkgdir/usr/share/eddie-cli/icons/notifyicon-gray.ico"
install -Dm644 "resources/icons/icon.png" "$pkgdir/usr/share/eddie-cli/icons/icon.png"
install -Dm644 "resources/icons/icon-gray.png" "$pkgdir/usr/share/eddie-cli/icons/icon-gray.png"
if [ "$LINE" = "u" ]; then
mkdir -p "$pkgdir/usr/share/eddie-cli/webui"
cp -a "resources/webui/." "$pkgdir/usr/share/eddie-cli/webui/"
fi
install -Dm644 "resources/providers/OpenVPN.json" "$pkgdir/usr/share/eddie-cli/providers/OpenVPN.json"
install -Dm644 "resources/providers/WireGuard.json" "$pkgdir/usr/share/eddie-cli/providers/WireGuard.json"
install -Dm644 "resources/providers/AirVPN.json" "$pkgdir/usr/share/eddie-cli/providers/AirVPN.json"
install -Dm644 "repository/linux_arch/bundle/eddie-cli/usr/share/doc/eddie-cli/copyright" "$pkgdir/usr/share/doc/eddie-cli/copyright"
install -Dm644 "repository/linux_arch/bundle/eddie-cli/usr/share/polkit-1/actions/org.airvpn.eddie.cli.elevated.policy" "$pkgdir/usr/share/polkit-1/actions/org.airvpn.eddie.cli.elevated.policy"
install -Dm644 "changelog.gz" "$pkgdir/usr/share/doc/eddie-cli/changelog.gz"
install -Dm755 "src/App.CLI.Linux/bin/Release/net10.0/${RID}/libLib.Platform.Linux.Native.so" "$pkgdir/usr/lib/eddie-cli/libLib.Platform.Linux.Native.so"
install -Dm755 "src/App.CLI.Linux/bin/Release/net10.0/${RID}/eddie-cli-elevated" "$pkgdir/usr/lib/eddie-cli/eddie-cli-elevated"
install -Dm755 "src/App.CLI.Linux/bin/Release/net10.0/${RID}/eddie-cli-elevated-service" "$pkgdir/usr/lib/eddie-cli/eddie-cli-elevated-service"
install -Dm755 "src/App.CLI.Linux/bin/Release/net10.0/${RID}/publish/eddie-cli" "$pkgdir/usr/lib/eddie-cli/eddie-cli"
if [ "cli" = "cli" ]; then
install -Dm644 "eddie-cli.8.gz" "$pkgdir/usr/share/man/man8/eddie-cli.8.gz"
elif [ "cli" = "ui" ]; then
if [ "$LINE" = "u" ]; then
install -Dm755 "src/App.UI.Linux/bin/eddie-ui" "$pkgdir/usr/lib/eddie-cli/eddie-ui"
elif [ "$LINE" = "l" ]; then
install -Dm755 "src/App.Forms.Linux.Tray/bin/eddie-tray" "$pkgdir/usr/lib/eddie-cli/eddie-tray"
install -Dm755 "src/App.Forms.Linux/bin/x64/Release/eddie-ui" "$pkgdir/usr/lib/eddie-cli/eddie-ui"
fi
install -Dm644 "repository/linux_arch/bundle/eddie-cli/usr/share/pixmaps/eddie-cli.png" "$pkgdir/usr/share/pixmaps/eddie-cli.png"
fi
# Unknown if this is need today, 2023-12-12
if [ "cli" = "ui" ]; then
## Fix .desktop file for KDE
_desktop_session=$(printf "%s" "$DESKTOP_SESSION" | awk -F "/" '{print $NF}')
if [ "$_desktop_session" = "plasma" ]; then
msg2 "Installing desktop file for KDE..."
desktop-file-install -m 644 --set-comment="OpenVPN UI" \
--dir="$pkgdir/usr/share/applications/" \
--set-icon="/usr/share/pixmaps/eddie-ui.png" \
"repository/linux_arch/bundle/eddie-ui/usr/share/applications/eddie-ui.desktop"
else
msg2 "Installing desktop file..."
desktop-file-install -m 644 --set-comment="OpenVPN UI" \
--dir="$pkgdir/usr/share/applications/" \
"repository/linux_arch/bundle/eddie-ui/usr/share/applications/eddie-ui.desktop"
fi
fi
}
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 |