Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
MyLogin
PluginMIT

MyLogin

MyLogin is a lightweight authentication plugin for Minecraft servers. It provides secure password-based login, strong pre-login protection, IP-based auto login.

75
Downloads
1
Followers
1 months ago
Updated
📦
2
Versions
managementstorageutilitypaperpurpurspigot
Download Latestv1.3.0View on Modrinth

📖About MyLogin

🔐 MyLogin

MyLogin is a lightweight authentication and account-protection plugin for Minecraft Paper servers.

It provides password-based authentication, migration from Passky, offline-mode account protection, duplicate session protection, and administrative account management tools.


📖 Project Background

MyLogin was created as a modern alternative to Passky, allowing server owners to continue using existing player login data while maintaining compatibility with current Paper releases.

The plugin supports migration of existing Passky SHA-256 password data, allowing players to keep their existing passwords after migration.


✨ Features

  • Password-based player authentication
  • Passky SHA-256 migration support
  • Configurable login timeout
  • Maximum login attempt protection
  • Optional IP-based auto-login
  • Logout support
  • Admin password management
  • Blindness protection before login
  • Firework effect after successful login
  • Username case protection for offline-mode servers
  • Duplicate session protection
  • Username collision detection and reporting
  • YAML-based storage
  • Configuration migration support

📦 Requirements

  • Server: Paper
  • Supported Versions: 1.21.x
  • Java: 21+

Compatibility Notes

MyLogin uses only the standard Bukkit/Paper API and does not use NMS or CraftBukkit internals.

Because of this, the plugin is expected to work on newer Paper builds, including current 26.1.x releases, but only Paper 1.21.x is officially supported.


📜 Player Commands

Command Description
/register <password> <password> Register a new account
/login <password> Log into your account
/changepassword <old> <new> Change your password
/logout Log out of your current session

🛠 Admin Commands

Command Permission Description
/migrate mylogin.admin Migrate Passky user data
/resetpassword <player> <newpassword> mylogin.admin Reset a player's password
/deleteplayer <player> mylogin.admin Delete a player's account
/mylogin reload mylogin.admin Reload configuration
/mylogin scannamecollisions mylogin.admin Scan users.yml for username case collisions
/mylogin checkplayer <player> mylogin.admin View player login information
/mylogin stats mylogin.admin View MyLogin statistics

⚙️ Configuration

Example:

login-timeout-seconds: 300

max-login-attempts: 5

min-password-length: 4
max-password-length: 32

ip-remember: true
ip-remember-timeout: 86400

effects:
  blind: true
  firework: true

security:
  enforce-name-case: false
  scan-name-collisions-on-startup: true
  block-duplicate-sessions: true

migration:
  skip-existing-users: true

🔒 Username Case Protection

Offline-mode servers treat usernames with different capitalization as different accounts.

Examples:

SkyBuilder
SKYBUILDER
sKyBuIlDeR

When enabled:

security:
  enforce-name-case: true

Players must reconnect using the exact username capitalization originally registered.

Example:

Registered:
SkyBuilder

Joining:
SKYBUILDER

Result:

This name is already registered as 'SkyBuilder'.
Please reconnect using that exact name.

This helps prevent:

  • Duplicate inventories
  • Duplicate economy accounts
  • Duplicate claims
  • Duplicate permissions
  • Duplicate backup records

🛡 Duplicate Session Protection

When enabled:

security:
  block-duplicate-sessions: true

If a player is already online:

SkyBuilder

and another client attempts to connect using:

SkyBuilder

the new connection is denied and the original player remains online.


🔍 Username Collision Scanner

When enabled:

security:
  scan-name-collisions-on-startup: true

MyLogin scans users.yml for username case collisions.

Example:

SkyBuilder
SKYBUILDER
sKyBuIlDeR

Results are written to:

plugins/MyLogin/data/name-collision-log.yml

🔄 Migration From Passky

Requirements:

  • Passky encoder must be SHA-256
  • Player identifier must use player names

MyLogin can import existing Passky accounts without requiring players to register again.

Migration files:

plugins/MyLogin/Migration/old-users.yml
plugins/MyLogin/Migration/migration-log.yml

Migration protection:

migration:
  skip-existing-users: true

Existing MyLogin accounts are not overwritten by default.


💾 Data Storage

Main data files:

plugins/MyLogin/data/users.yml
plugins/MyLogin/data/name-collision-log.yml
plugins/MyLogin/Migration/old-users.yml
plugins/MyLogin/Migration/migration-log.yml

📄 License

MIT License

👥 Team & Contributors

imSpartann
imSpartannOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paperpurpurspigot
Minecraft Versions
1.211.21.11.21.21.21.31.21.41.21.51.21.61.21.7+4 more

🔗 Links

Modrinth Page