Anti-cheat
Software that detects and prevents cheating in competitive contexts. In the gaming industry the canonical examples are BattlEye, Easy Anti-Cheat, and Riot Vanguard — kernel-mode drivers that watch for memory tampering, hooked syscalls, and unauthorized overlays. The same engineering surface has been adopted by interview-proctoring platforms like CoderPad Enterprise and CodeSignal IQ, except inverted: instead of catching cheaters in a multiplayer game, they catch candidates running AI assistance during a hiring round. Anti-cheat at proctoring depth typically combines client-side process enumeration, OS-level window listing, and screen-capture diff analysis. The architectural arms race is identical to the gaming case — anti-cheat operates one ring deeper than the cheat. A user-mode AI overlay is detectable by a kernel-mode anti-cheat module; a kernel-mode AI overlay is not, because the proctor doesn't ship a kernel driver to the candidate's machine.
See also: How CoderPad Enterprise anti-cheat detects AI tools, The four stealth layers