Op Login

⭐ — (7 endorsements) 📥 1,750 downloads 📌 v1.4.1 📅 8/6/2024
🟡 Updated this year

By periklis20m · bukkit

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 3/11/2026 📅 Created: 8/6/2024

🔍 Analysis

  • 👍 0.4% endorsement rate
  • 🏆 #1113 of 1560 bukkit mods in this game by downloads

📋 About This Mod

# OpLogin OpLogin is a Paper plugin that keeps operator accounts usable for normal gameplay while locking operator privileges behind authentication. Operators join in a locked state, unlock only when needed, and return to a protected state automatically or manually. ## Features - Locked operator sessions that disable operator privileges until authentication. - BCrypt password storage with one-time migration support for older AES-encrypted entries. - Chat-safe password login flow: `/oplogin` starts login and the next chat message is captured privately. - Optional PIN keypad mode with randomized digit positions and custom number heads. - Manual `/oplogout` support that immediately locks privileges and clears trusted IP auto-login state. - Sensitive command protection that overrides whitelist mistakes for high-risk commands. - Temporary unlock timeouts and optional auto-locking after sensitive commands. - Failed login attempt tracking with temporary blocking. - Operator command audit logging. - Emergency `/oplockdown` command to force all online operators back into the locked state. - Trusted IP auto-login support that only applies after a successful authenticated login. ## Commands - `/opsetpass <player> <password>` Console-only. Sets or replaces an operator credential. - `/oplogin` Starts authentication. In password mode the next chat message is treated as the password. In PIN mode a keypad GUI opens. - `/oplogout` Locks the current operator session immediately and clears remembered IP login for that operator. - `/resetop <player>` Console-only. Removes an operator credential. - `/opreload` Console-only. Reloads config and whitelist data. - `/oplockdown` Console-only. Forces all online operators back into the locked state. ## Authentication Modes ### Password Mode - Default mode. - Operators use `/oplogin`, then type their password in chat. - Passwords must meet `security.min-password-length`. ### PIN Mode - Optional and disabled by default. - Operators use `/oplogin` and receive a randomized keypad GUI. - Stored credentials must be numeric and match `security.pin-mode.length`. - Number head textures in the keypad use assets from (https://minecraft-heads.com/). !(https://cdn.modrinth.com/data/cached_images/fec4962f64cb2a0c444c3f1f20374cf4f8f782e6.png) ### Important Mode Change Behavior - Switching between password mode and PIN mode resets all stored operator credentials and trusted IP entries on the next startup or `/opreload`. - This is intentional so text passwords cannot remain active in PIN mode, and PIN-only credentials do not carry over into password mode. ## Installation 1. Download the latest jar. 2. Place it in the server `plugins` directory. 3. Start the server once to generate `config.yml` and `whitelist.yml`. 4. Configure the plugin and reload or restart the server. ## Configuration ### `config.yml` Relevant options: ```yaml security: min-password-length: 8 max-login-attempts: 3 block-duration: 15 enable-ip-auto-login: true unlock-duration-seconds: 300 auto-lock-ops-on-join: true pin-mode: enabled: false length: 4 title: '&8OpLogin PIN' ``` Notes: - `enable-ip-auto-login` remembers the IP only after a successful authenticated login. - Using `/oplogout` clears the remembered IP for that operator immediately. - If PIN mode is enabled, credentials set with `/opsetpass` must be numeric and match the configured PIN length. ### `whitelist.yml` Commands listed here can still be used while locked, except for sensitive commands that are always blocked until authentication. Default example: ```yaml whitelisted-commands: - help - oplogin - list - ping ``` ## Usage ### Set a Credential Use `/opsetpass <player> <password>` from the console. ### Log In Use `/oplogin`. ### Log Out Use `/oplogout` to re-lock privileges without leaving the server. ### Reset a Credential Use `/resetop <player>` from the console. ## Compatibility - Minecraft: Paper 1.21.x - Java: 21 ## Credits - PIN keypad head textures: (https://minecraft-heads.com/)

# OpLogin OpLogin is a Paper plugin that keeps operator accounts usable for normal gameplay while locking operator privileges behind authentication. Operators join in a locked state, unlock only when needed, and return to a protected state automatically or manually.

## Features - Locked operator sessions that disable operator privileges until authentication. - BCrypt password storage with one-time migration support for older AES-encrypted entries. - Chat-safe password login flow: `/oplogin` starts login and the next chat message is captured privately. - Optional PIN keypad mode with randomized digit positions and custom number heads. - Manual `/oplogout` support that immediately locks privileges and clears trusted IP auto-login state. - Sensitive command protection that overrides whitelist mistakes for high-risk commands. - Temporary unlock timeouts and optional auto-locking after sensitive commands. - Failed login attempt tracking with temporary blocking. - Operator command audit logging. - Emergency `/oplockdown` command to force all online operators back into the locked state. - Trusted IP auto-login support that only applies after a successful authenticated login.

## Commands - `/opsetpass ` Console-only. Sets or replaces an operator credential. - `/oplogin` Starts authentication. In password mode the next chat message is treated as the password. In PIN mode a keypad GUI opens. - `/oplogout` Locks the current operator session immediately and clears remembered IP login for that operator. - `/resetop ` Console-only. Removes an operator credential. - `/opreload` Console-only. Reloads config and whitelist data. - `/oplockdown` Console-only. Forces all online operators back into the locked state.

## Authentication Modes ### Password Mode - Default mode. - Operators use `/oplogin`, then type their password in chat. - Passwords must meet `security.min-password-length`.

### PIN Mode - Optional and disabled by default. - Operators use `/oplogin` and receive a randomized keypad GUI. - Stored credentials must be numeric and match `security.pin-mode.length`. - Number head textures in the keypad use assets from (https://minecraft-heads.com/). !(https://cdn.modrinth.com/data/cached_images/fec4962f64cb2a0c444c3f1f20374cf4f8f782e6.png)

### Important Mode Change Behavior - Switching between password mode and PIN mode resets all stored operator credentials and trusted IP entries on the next startup or `/opreload`. - This is intentional so text passwords cannot remain active in PIN mode, and PIN-only credentials do not carry over into password mode.

## Installation 1. Download the latest jar. 2. Place it in the server `plugins` directory. 3. Start the server once to generate `config.yml` and `whitelist.yml`. 4. Configure the plugin and reload or restart the server.

## Configuration ### `config.yml` Relevant options:

```yaml security: min-password-length: 8 max-login-attempts: 3 block-duration: 15 enable-ip-auto-login: true unlock-duration-seconds: 300 auto-lock-ops-on-join: true pin-mode: enabled: false length: 4 title: '&8OpLogin PIN' ```

Notes: - `enable-ip-auto-login` remembers the IP only after a successful authenticated login. - Using `/oplogout` clears the remembered IP for that operator immediately. - If PIN mode is enabled, credentials set with `/opsetpass` must be numeric and match the configured PIN length.

### `whitelist.yml` Commands listed here can still be used while locked, except for sensitive commands that are always blocked until authentication.

Default example:

```yaml whitelisted-commands: - help - oplogin - list - ping ```

## Usage ### Set a Credential Use `/opsetpass ` from the console.

### Log In Use `/oplogin`.

### Log Out Use `/oplogout` to re-lock privileges without leaving the server.

### Reset a Credential Use `/resetop ` from the console.

## Compatibility - Minecraft: Paper 1. 21.x - Java: 21

## Credits - PIN keypad head textures: (https://minecraft-heads.com/)

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
periklis20m
Version
1.4.1
Downloads
1,750
Endorsements
7
Category
bukkit
Created
8/6/2024
Updated
3/11/2026
Game Versions
1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
Tags
storage, 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 Op Login 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 Op Login?

Version 1.4.1, published 2026-03-11 with 1,750 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More bukkit 👤 More by periklis20m 🔎 Similar Mods 🌐 Best bukkit (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods