git404hub

what is antirat fr?

moleclient/antirat — explained in plain English

Analysis updated 2026-05-18

3JavaAudience · generalComplexity · 3/5LicenseSetup · easy

tl;dr

A client-side Minecraft Fabric mod that detects and quarantines other mods trying to steal login credentials or spy on your computer.

vibe map

mindmap
  root((AntiRat))
    What it does
      Detects stealer mods
      Quarantines threats
      Blocks credential theft
    Tech stack
      Java
      Fabric mod loader
    Use cases
      Protect Minecraft account
      Block data exfiltration
      Manual mod scanning
    Audience
      Minecraft players
      Drop-in mod install

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Protect a Minecraft account from stealer mods that try to read session credentials.

VIBE 2

Detect and quarantine mods that try to exfiltrate browser or messaging app data.

VIBE 3

Manually scan or quarantine a suspicious mod using in-game commands.

VIBE 4

Block malicious mods from making unauthorized network or process calls at runtime.

what's the stack?

JavaFabric

how it stacks up fr

moleclient/antiratcoder088/opencraftdark-night0/ghidramcp
Stars333
LanguageJavaJavaJava
Setup difficultyeasymoderatehard
Complexity3/53/54/5
Audiencegeneraldeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · easy time til it works · 5min

Requires downloading the exact JAR matching your Minecraft version from the Releases page.

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

in plain english

AntiRat is a security mod for Minecraft, built on the Fabric mod loader, that tries to catch other mods designed to steal a player's account or spy on their computer, commonly called stealers or remote access trojans. It only runs on the player's own game client, not on a server, and installation is a single step: dropping the correct file into the mods folder for your Minecraft version, with nothing else required. It works in layers. Before other mods even finish loading, it scans their code and files for suspicious signs, things like hidden nested files, disguised executable code, or capabilities related to reading credentials and sending data out to the internet. The README is clear that no single suspicious trait is enough to trigger action. It looks for combinations, such as something capable of reading login credentials paired with something capable of sending data elsewhere. Once the game is running, it keeps watching. If a mod tries to access session or login data, AntiRat checks where that request is actually coming from and compares it against a verified fingerprint of that mod's file taken at startup. Trusted mods are let through normally, while anything suspicious, altered, or unrecognized gets fake, empty data instead of the real thing. It applies similar watching to file access, network connections, and attempts to launch other programs, covering common places stealers try to read from, like browser data or messaging app files, and common ways they try to send data out, like webhooks or direct network sockets. It is explicit that it does not store the actual credential values or file contents it detects, only sanitized summaries of what happened. When something is confirmed dangerous, AntiRat moves the offending file into a quarantine folder rather than deleting it outright, and disables anything else that depended on it, so the next time Minecraft starts things load cleanly. Players can also run in game commands to list, inspect, manually scan, or quarantine specific mods themselves. The project is released under the MIT license.

prompts (copy fr)

prompt 1
Help me pick the right AntiRat release JAR for my Minecraft and Java version.
prompt 2
Explain how AntiRat decides a mod is dangerous versus just using normal networking APIs.
prompt 3
Walk me through the in-game /antirat commands for scanning and quarantining a mod.
prompt 4
Show me how AntiRat's quarantine process works if Windows is still holding the suspicious file open.

Frequently asked questions

what is antirat fr?

A client-side Minecraft Fabric mod that detects and quarantines other mods trying to steal login credentials or spy on your computer.

What language is antirat written in?

Mainly Java. The stack also includes Java, Fabric.

What license does antirat use?

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

How hard is antirat to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is antirat for?

Mainly general.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.