MCPcopy Index your code
hub / github.com/AuthMe/AuthMeReloaded

github.com/AuthMe/AuthMeReloaded @6.0.0-R1

Chat with this repo
repository ↗ · DeepWiki ↗ · release 6.0.0-R1 ↗ · + Follow
4,985 symbols 24,308 edges 737 files 1,645 documented · 33%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

AuthMeReloaded

"The best authentication plugin for the Bukkit modding API!"

AuthMeLogo

Type Badges
Code quality: Code Climate Coverage status
Jenkins CI: Jenkins Status Build Status Jenkins Tests
Other CIs: Build Status

Description

Prevent username stealing on your server!

Use it to secure your Offline mode server or to increase your Online mode server's protection!

AuthMeReloaded disallows players who aren't authenticated to do actions like placing blocks, moving,

typing commands or using the inventory. It can also kick players with uncommonly long or short player names or kick players from banned countries.

With the Session Login feature, you don't have to execute the authentication command every time you connect to the server! Each command and every feature can be enabled or disabled from our well-structured configuration file.

You can also create your own translation file and, if you want, you can share it with us! :)

Features:

  • E-Mail Recovery System!
  • Username spoofing protection.
  • Countries Whitelist/Blacklist! (country codes)
  • Built-in AntiBot System!
  • ForceLogin Feature: Admins can login with all account via console command!
  • Avoid the "Logged in from another location" message!
  • Two-factor (2FA) support!
  • Session Login!
  • Editable translations and messages!
  • MySQL and SQLite Backend support!
  • Supported password encryption algorithms: SHA256, ARGON2, BCRYPT, PBKDF2
  • Supported alternative registration methods:
    • PHPBB, VBulletin: PHPBB - MD5VB
    • Xenforo: XFBCRYPT
    • MyBB: MYBB
    • IPB3: IPB3
    • IPB4: IPB4
    • PhpFusion: PHPFUSION
    • Joomla: JOOMLA
    • WBB3: WBB3*
    • SHA512: SALTEDSHA512
    • DoubleSaltedMD5: SALTED2MD5
    • WordPress: WORDPRESS
    • List of all supported hashes
  • Custom MySQL tables/columns names (useful with forum databases)
  • Cached database queries!
  • Fully compatible with Citizens2, CombatTag, CombatTagPlus!
  • Velocity proxy bridge for inter-server authentication.
  • Compatible with Minecraft mods like BuildCraft or RedstoneCraft
  • Graphical login/register dialogs, with optional Paper/Folia pre-join dialogs
  • Restricted users (associate a username with an IP)
  • Protect player's inventory until correct authentication (requires PacketEvents)
  • Saves the quit location of the player
  • Automatic database backup
  • Available languages: translations
  • Built-in deprecated FlatFile (auths.db) to SQL (authme.sql) converter!
  • Import Auth+ accounts or migrate between SQLite and MySQL without losing AuthMe data.

Configuration

How to configure AuthMe

Dialog UI

AuthMe can display graphical login/register dialogs instead of chat-based prompts.

  • settings.registration.useDialogUi enables the post-join dialog flow.
  • settings.registration.usePreJoinDialogUi enables the pre-join dialog flow on Paper/Folia.
  • Both options are independent: you can enable either one, both, or neither.
  • Pre-join dialogs currently require modern dialog-capable server versions such as Paper/Folia 1.21.11+.

Commands

Command list and usage

Permissions

How To

Links and Contacts

Requirements

Compiling requirements:
  • JDK 17+ for authme-core, authme-tools, and authme-spigot-legacy
  • JDK 21+ for the full multi-module build (authme-bungee, authme-spigot-1.21, authme-paper-common, authme-paper, authme-folia, authme-velocity)
  • Maven (3.8.8+)
  • Git/GitHub (Optional)
How to compile the project:
  • Clone the project with Git/GitHub
  • Execute command mvn clean package
  • With JDK 17, Maven builds only the Java 17-compatible modules
  • With JDK 21+, Maven builds the full reactor
  • Build and tooling command reference: docs/build.md
Running requirements:
  • Use the jar matching your server platform/version
  • Java 17+ for AuthMe-*-Spigot-Legacy.jar (Spigot 1.16.x – 1.19.x)
  • Java 21+ for:
  • AuthMe-*-Bungee.jar (BungeeCord / Waterfall-compatible 1.19 API)
  • AuthMe-*-Velocity.jar (Velocity 3.4+ proxy bridge)
  • AuthMe-*-Spigot-1.21.jar (Spigot 1.20.x – 1.21.x)
  • AuthMe-*-Paper.jar (Paper 1.21+)
  • AuthMe-*-Folia.jar (Folia 1.21+)
  • PacketEvents (optional, required by some features)

Credits

Contributors:

Team members: developers, translators

Credits for the old version of the plugin: d4rkwarriors, fabe1337, Whoami2 and pomo4ka

Thanks also to: AS1LV3RN1NJA, Hoeze and eprimex

GeoIP License:

This product uses data from the GeoLite API created by MaxMind, available at https://www.maxmind.com

Extension points exported contracts — how you extend this code

EncryptionMethod (Interface)
Public interface for custom password encryption methods. Instantiation of these methods is done via automatic depend [18 …
authme-core/src/main/java/fr/xephi/authme/security/crypts/EncryptionMethod.java
ToolTask (Interface)
Common interface for tool tasks. Note that the implementing tasks are instantiated with the default constructor. It is r [7 …
authme-tools/src/test/java/tools/utils/ToolTask.java
Converter (Interface)
Interface for AuthMe converters. [20 implementers]
authme-core/src/main/java/fr/xephi/authme/datasource/converter/Converter.java
AutoToolTask (Interface)
Interface for tasks that can be run automatically, i.e. without any user input. [13 implementers]
authme-tools/src/test/java/tools/utils/AutoToolTask.java
ExecutableCommand (Interface)
Base class for AuthMe commands that can be executed. [31 implementers]
authme-core/src/main/java/fr/xephi/authme/command/ExecutableCommand.java
PermissionNode (Interface)
Common interface for AuthMe permission nodes. [6 implementers]
authme-core/src/main/java/fr/xephi/authme/permission/PermissionNode.java
SettingsDependent (Interface)
Interface for classes that keep a local copy of certain settings. @see fr.xephi.authme.command.executable.authme.Reload [50 …
authme-core/src/main/java/fr/xephi/authme/initialization/SettingsDependent.java

Core symbols most depended-on inside this repo

verify
called by 1242
authme-core/src/main/java/fr/xephi/authme/data/VerificationCodeManager.java
getProperty
called by 812
authme-core/src/main/java/fr/xephi/authme/service/CommonService.java
getName
called by 495
authme-core/src/main/java/fr/xephi/authme/util/lazytags/Tag.java
get
called by 415
authme-core/src/main/java/fr/xephi/authme/util/expiring/ExpiringMap.java
send
called by 364
authme-core/src/main/java/fr/xephi/authme/message/Messages.java
sendMessage
called by 245
authme-core/src/main/java/fr/xephi/authme/service/JoinMessageService.java
put
called by 241
authme-core/src/main/java/fr/xephi/authme/util/expiring/ExpiringMap.java
getAuth
called by 174
authme-core/src/main/java/fr/xephi/authme/datasource/DataSource.java

Shape

Method 4,200
Class 717
Enum 36
Interface 28
Function 4

Languages

Java99%
PHP1%

Modules by API surface

authme-core/src/test/java/fr/xephi/authme/listener/PlayerListenerTest.java61 symbols
authme-core/src/main/java/fr/xephi/authme/data/auth/PlayerAuth.java58 symbols
authme-core/src/main/java/fr/xephi/authme/datasource/SQLite.java40 symbols
authme-core/src/test/java/fr/xephi/authme/listener/OnJoinVerifierTest.java39 symbols
authme-core/src/main/java/fr/xephi/authme/datasource/CacheDataSource.java37 symbols
authme-core/src/main/java/fr/xephi/authme/datasource/DataSource.java35 symbols
authme-core/src/test/java/fr/xephi/authme/api/v3/AuthMeApiTest.java34 symbols
authme-core/src/main/java/fr/xephi/authme/service/BukkitService.java31 symbols
authme-core/src/main/java/fr/xephi/authme/listener/PlayerListener.java31 symbols
authme-velocity/src/test/java/fr/xephi/authme/velocity/VelocityProxyBridgeTest.java29 symbols
authme-core/src/test/java/fr/xephi/authme/service/ValidationServiceTest.java29 symbols
authme-core/src/test/java/fr/xephi/authme/datasource/AbstractDataSourceIntegrationTest.java29 symbols

Datastores touched

(mysql)Database · 1 repos

For agents

$ claude mcp add AuthMeReloaded \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact