AltDetector Plugin
๐ก Updated this yearPreview

๐ Analysis
- ๐ #2 of 234 management mods in this game by downloads
๐ About This Mod
# ๐ AltDetector **Intelligent Alternate Account Detection for Paper** Stop ban evasion in its tracks. AltDetector runs a silent, fully async multi-layer detection engine on every login โ no lag, no false positives flooding chat, just precise alerts delivered straight to your staff. --- ## โจ Features ### ๐ง Multi-Layer Detection Engine Every login is analyzed through four independent detection layers, each producing a confidence score that is then weighted and combined into a final **risk score (0. 0โ1.0)**: | Layer | Method | Weight | |---|---|---| | **IP Match** | Shared IP address history | 40% | | **UUID / Username History** | Name-swap & cross-account username collisions | 25% | | **Login Pattern Analysis** | Session shifts, never-concurrent play, rapid alternation | 25% | | **Behavior Fingerprint** | Playtime ratios, peak-hour cosine similarity | 10% | All detection runs **fully asynchronously** โ the main thread is never blocked. ### โ ๏ธ Smart Risk Thresholds | Score | Level | Action | |---|---|---| | 0.50 โ 0.69 | ๐ก LOW | Staff alert only | | 0.70 โ 0.84 | ๐ MEDIUM | Staff alert + flag player record | | 0.85 โ 1.00 | ๐ด HIGH | Staff alert + flag + optional auto-ban | All thresholds are fully configurable. ### ๐ฃ Interactive Staff Alerts Alerts are silently sent only to players with `altdetector.staff.alerts`. Each alert includes clickable ** ** buttons โ no need to type a single command. Offline staff receive queued alerts the moment they log in. ### ๐จ Auto-Ban System When an alt of a **banned player** is detected above your configured threshold, AltDetector can automatically issue a ban with a customizable reason and appeal URL. Fires a cancellable `AltBanEvent` so other plugins can hook in. ### ๐๏ธ SQLite Storage (Async, WAL Mode) All data is stored in a local **SQLite database** using WAL journal mode and prepared statements. Tracked data includes: - IP address history (up to 20 per player, FIFO) - Username history (up to 50, FIFO) - Risk scores & flagged status - Staff notes - Full detection log with evidence tags ### ๐ก๏ธ Privacy & Fairness Tools - **IP Anonymization** โ store only partial IPs (first 3 octets) for GDPR compliance - **Shared IP Groups** โ whitelist households/LAN players so they're never flagged - **VPN/Proxy Hints** โ detects datacenter IP ranges (configurable CIDR list) and adds a `vpn_hint` evidence tag with a small risk bump - **Bypass Permission** โ grant `altdetector.bypass` to trusted accounts ### ๐ฅ๏ธ Commands | Command | Description | |---|---| | `/alt <player> ` | View all known alts of a player with risk scores | | `/altadmin inspect <player>` | Full profile: IPs, logins, risk, links, evidence | | `/altadmin history <player>` | Paginated login history with timestamps | | `/altadmin link <p1> <p2>` | Manually link two accounts | | `/altadmin unlink <p1> <p2>` | Remove a link | | `/altadmin confirm <player>` | Confirm a detected alt link | | `/altadmin whitelist <player>` | Whitelist from detection | | `/altadmin ban <player>` | Ban player and all confirmed alts simultaneously | | `/altadmin note <player> <text>` | Attach a staff note | | `/altadmin purge <player>` | Full GDPR data wipe | | `/altadmin export <player>` | Export full record as JSON | | `/altadmin stats` | Detection statistics | | `/altadmin reload` | Hot-reload config & messages | All subcommands support **tab-completion**. ### ๐ PlaceholderAPI Support | Placeholder | Value | |---|---| | `%altdetector_risk_score%` | Player's current risk score | | `%altdetector_alt_count%` | Number of known alt accounts | | `%altdetector_flagged%` | `true` or `false` | ### ๐ช Custom API Events Other plugins can hook into AltDetector's pipeline: - `AltDetectedEvent` โ fired on any detection above LOW threshold - `AltBanEvent` *(cancellable)* โ fired before any auto-ban - `AltLinkConfirmedEvent` โ fired when staff confirms a link - `AltWhitelistEvent` โ fired on whitelist changes --- ## ๐ฆ Requirements - **Paper** 1.21+ - **Java 21** - PlaceholderAPI *(optional, soft-depend)* ## โ๏ธ Configuration Fully documented `config.yml` and MiniMessage-powered `messages.yml` with named placeholders. Reload at any time with `/altadmin reload` โ no restart needed. --- *AltDetector is designed for survival, SMP, factions, and competitive servers where ban evasion is a serious problem. Zero dependencies beyond Paper itself.*
# ๐ AltDetector Intelligent Alternate Account Detection for Paper
Stop ban evasion in its tracks. AltDetector runs a silent, fully async multi-layer detection engine on every login โ no lag, no false positives flooding chat, just precise alerts delivered straight to your staff.
## โจ Features
### ๐ง Multi-Layer Detection Engine
Every login is analyzed through four independent detection layers, each producing a confidence score that is then weighted and combined into a final risk score (0. 0โ1. 0):
| Layer | Method | Weight | |---|---|---| | IP Match | Shared IP address history | 40% | | UUID / Username History | Name-swap & cross-account username collisions | 25% | | Login Pattern Analysis | Session shifts, never-concurrent play, rapid alternation | 25% | | Behavior Fingerprint | Playtime ratios, peak-hour cosine similarity | 10% |
All detection runs fully asynchronously โ the main thread is never blocked.
### โ ๏ธ Smart Risk Thresholds | Score | Level | Action | |---|---|---| | 0. 50 โ 0. 69 | ๐ก LOW | Staff alert only | | 0. 70 โ 0. 84 | ๐ MEDIUM | Staff alert + flag player record | | 0. 85 โ 1. 00 | ๐ด HIGH | Staff alert + flag + optional auto-ban |
All thresholds are fully configurable.
### ๐ฃ Interactive Staff Alerts
Alerts are silently sent only to players with `altdetector.staff.alerts`. Each alert includes clickable buttons โ no need to type a single command. Offline staff receive queued alerts the moment they log in.
### ๐จ Auto-Ban System
When an alt of a banned player is detected above your configured threshold, AltDetector can automatically issue a ban with a customizable reason and appeal URL. Fires a cancellable `AltBanEvent` so other plugins can hook in.
### ๐๏ธ SQLite Storage (Async, WAL Mode)
All data is stored in a local SQLite database using WAL journal mode and prepared statements. Tracked data includes: - IP address history (up to 20 per player, FIFO) - Username history (up to 50, FIFO) - Risk scores & flagged status - Staff notes - Full detection log with evidence tags
### ๐ก๏ธ Privacy & Fairness Tools - IP Anonymization โ store only partial IPs (first 3 octets) for GDPR compliance - Shared IP Groups โ whitelist households/LAN players so they're never flagged - VPN/Proxy Hints โ detects datacenter IP ranges (configurable CIDR list) and adds a `vpn_hint` evidence tag with a small risk bump - Bypass Permission โ grant `altdetector.bypass` to trusted accounts
### ๐ฅ๏ธ Commands
| Command | Description |
|---|---|
| `/alt
All subcommands support tab-completion.
### ๐ PlaceholderAPI Support | Placeholder | Value | |---|---| | `%altdetector_risk_score%` | Player's current risk score | | `%altdetector_alt_count%` | Number of known alt accounts | | `%altdetector_flagged%` | `true` or `false` |
### ๐ช Custom API Events
Other plugins can hook into AltDetector's pipeline: - `AltDetectedEvent` โ fired on any detection above LOW threshold - `AltBanEvent` (cancellable) โ fired before any auto-ban - `AltLinkConfirmedEvent` โ fired when staff confirms a link - `AltWhitelistEvent` โ fired on whitelist changes
## ๐ฆ Requirements
- Paper 1. 21+
- Java 21
- PlaceholderAPI (optional, soft-depend)
## โ๏ธ Configuration Fully documented `config.yml` and MiniMessage-powered `messages.yml` with named placeholders. Reload at any time with `/altadmin reload` โ no restart needed.
AltDetector is designed for survival, SMP, factions, and competitive servers where ban evasion is a serious problem. Zero dependencies beyond Paper itself.
๐ Mod Details
- Game
- Minecraft Plugins
- Author
- _v.o.i.d.x
- Version
- 1.0.0
- Downloads
- 164
- Endorsements
- 0
- Category
- management
- Created
- 6/4/2026
- Updated
- 7/1/2026
- Game Versions
- 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
- Tags
- management, technology, utility
๐ง How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
๐ Full step-by-step install guide for Minecraft Plugins โ
Visit the official mod page for specific installation instructions for this mod.
๐ฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
โ Frequently Asked Questions
Which Minecraft Plugins versions does AltDetector Plugin support?
The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.
What is the latest version of AltDetector Plugin?
Version 1.0.0, published 2026-07-01 with 164 downloads recorded at the source.
Keep browsing โ more Minecraft Plugins mods await