linux/arm64 (aarch64) build of the max-stealth Fortress Chromium 151.0.7908.0, linked for broad glibc compatibility — runs on Debian 12 "bookworm" and older/newer (Debian 11/12/13, Ubuntu, AWS Graviton, Lima/QEMU on Apple Silicon).
This is the fix for the earlier linux-arm64-151.0.7908.0 release, which linked against a newer build host (glibc 2.39 / GCC 14) and crashed at dynamic-link time on Debian 12 (glibc 2.36) — the loader bailed before main() (silent exit, no window).
What changed vs. the previous arm64 release
- Built against Chromium's bundled arm64 sysroot (Debian bullseye, glibc 2.31) instead of the host libraries (
use_sysroot=true). - Binary now caps at GLIBC_2.25 / GCC_4.5 (was GLIBC_2.38 / GCC_14.0) — the same mechanism official Google Chrome arm64 builds use.
- No source or patch changes. All 34 C++ stealth patches applied unchanged; identical fingerprint behavior. x64 build untouched. See PR: tiliondev#28.
Download
tilion-fortress-linux-arm64-debian12.tar.gz
sha256 da6965af8fa8e995d137bcabdca8d163fde7f32ba483eaf5e029223995f19ada
Run
tar xzf tilion-fortress-linux-arm64-debian12.tar.gz
cd tilion-fortress
./tilion https://example.com # browser, default Windows persona
./tilion --headless=new --remote-debugging-port=9222 --user-data-dir=/tmp/p # automation (CDP)Point any Playwright/Puppeteer/driver executablePath at ./tilion — it forwards all flags and applies the persona + bundled fonts automatically.
Runtime deps (fresh Debian 12 / Ubuntu guest)
sudo apt-get update && sudo apt-get install -y \
libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libgbm1 libasound2 \
libpango-1.0-0 libcairo2 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 \
libxkbcommon0 libgtk-3-0 libxshmfence1 libx11-xcb1Verified
- glibc/GCC symbol caps checked with
objdump -T(max GLIBC_2.25, GCC_4.5). - Loads google.com over CDP on an aarch64 host:
document.title === "Google", search box present, and the Windows persona projects (navigator.platform, spoofed UA). - Build it yourself:
git clone -b arm64 https://github.com/MT-GoCode/fortress && ./fortress/build/build-arm64.sh - Community/unofficial fork build.