Anti-Cheat for Rust 2026: Is EAC Enough, and What Can Admins Do?
Every Rust server operator eventually faces the cheater question. Someone with improbable accuracy, someone who shoots through walls, someone who knows exactly where your base is hidden. Easy Anti-Cheat (EAC) handles the majority of cases, but its evasion rate means proactive admin moderation remains necessary.
What EAC Catches
EAC operates as a kernel-level driver that monitors the Rust client process memory for known cheat signatures. It catches:
- Memory injection tools (speed hacks, god mode, no-clip)
- Known cheat software that hasn't been recently updated to evade signature detection
- File integrity violations (modified game files)
Facepunch runs monthly "ban waves" releasing all pending EAC detections simultaneously. This makes it harder for cheat developers to identify which specific user triggered detection.
What EAC Misses in 2026
EAC is a signature-based system. New cheats that haven't been profiled yet evade it. The current most common EAC-evasion techniques:
- External screen-reading aimbot (reads screen pixels, never touches game memory)
- Trigger bots (software-level mouse buttons, no memory interaction)
- ESP injected via legitimate software (display overlay tools)
These are harder to detect because they don't modify game memory or files.
Server Admin Anti-Cheat Tools
Rustbans.com — Cross-server ban sharing database. Import known cheaters' Steam IDs to automatically ban them on your server even before they join.
Server Armour — uMod plugin that checks joining players against community ban databases, new account flags, VAC history, and gameplay stat anomalies.
# Server Armour configuration
"Investigate players with less than X hours on Rust if VAC banned": 100,
"Kick players with (X) EAC bans": 1,
"Kick players with Steam profile not set to public": false
VACBanned checking — In uMod permissions, set a minimum account age requirement:
"Minimum Steam Account age in days": 90
Accounts under 90 days are disproportionately likely to be fresh ban-evasion accounts.
Behavioural Moderation
Technology alone doesn't catch everything. Maintain an admin team that:
- Spectates reported players using Vanish (invisible admin mode)
- Reviews PvP session logs with AdminHammer
- Acts on community reports within 24 hours
Fast, fair moderation is a stronger trust signal than any plugin. Servers known for responsive admin teams retain players who value fair play — and those players are both more active and more likely to support VIP programs.