Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 695 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 695 Bytes

AutoAuth

A small mod for managing client side of basic authentication for you.

Compile

To compile, you need Gradle at least 8.9. Java at least 21 (for both Gradle and the project).

Features

  • Manage basic authentication process on client for servers using /register /login scheme.

Benefits

  • You don't ever need to manage passwords for such servers manually.

Passwords store

All passwords stored in json file located in .minecraft/config/AutoAuth/passwords.json

File stucture is following.

[
  {
    "ip": "127.0.0.1",
    "user": "EnergoStalin",
    "pass": "sus"
  }
]