Skip to content

Releases: MT-GoCode/fortress

Fortress linux/arm64 (Debian 12+ compatible) — Chromium 151.0.7908.0 (stealth)

Choose a tag to compare

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-xcb1

Verified

  • 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.

Fortress linux/arm64 — Chromium 151.0.7908.0 (stealth)

Choose a tag to compare

Native linux/arm64 (aarch64) build of the max-stealth Fortress Chromium 151.0.7908.0 — the target that upstream lists as "in progress". Runs on ARM64 Linux (AWS Graviton, or a Linux arm64 VM under Lima/QEMU on Apple Silicon).

All 34 C++ stealth patches are applied unchanged — they're architecture-neutral. Built from source with the toolchain compiled natively for arm64 (see PR: tiliondev#28).

Download

tilion-fortress-linux-arm64.tar.gz

sha256  af83b768887161b22b1e06d0c0ba30b77ef10aec83ba68d59cbd333187f9cf78

Run

tar xzf tilion-fortress-linux-arm64.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 Ubuntu/Lima guest)

This build links against host system libraries, so install the usual Chromium runtime deps once:

sudo apt-get update && sudo apt-get install -y \
  libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libgbm1 libasound2t64 \
  libpango-1.0-0 libcairo2 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 \
  libxkbcommon0 libgtk-3-0 libxshmfence1 libx11-xcb1

Notes

  • Reproducible: three independent builds produced this binary bit-for-bit identically.
  • Verified: runs, loads google.com, and projects the Windows persona (navigator.platform === "Win32", Windows UA, spoofed core count) on an aarch64 host.
  • Build it yourself: git clone -b arm64 https://github.com/MT-GoCode/fortress && ./fortress/build/build-arm64.sh
  • Community/unofficial fork build.