-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/PumpMyKins/LuckSecure
- Loading branch information
Showing
1 changed file
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,40 @@ | ||
# LuckSecure | ||
Secure LuckPerm group with A2F through discord | ||
*This is a bungeecord plugin. Depends on [LuckPerms](https://github.com/LuckPerms/LuckPerms)* | ||
|
||
#### This plugin aims to increase security by adding a custom luckperms context named `lucksecure` . A user with a group/permission in need of the `authenticated` context will have to authenticate himself with a time-based one-time password (Google Authenticator/Microsoft Authenticator & etc...). | ||
|
||
--- | ||
|
||
### Ex. how to use : | ||
|
||
|
||
1. Add a permission to a user with the `authenticated` context (ex: `lpb user {your pseudo} permission set lsauth.cmd true lucksecure=authenticated` ) | ||
|
||
2. Test the command `lsauth-status` -> You do not have permission to execute this command! | ||
|
||
3. As you have now a permission which needs the `authenticated` context to be active, you'll have to setup your TOTP. Use `/lsauth` to generate a TOTP key and QRCODE and import it in your favortie 2AF/TOTP app. | ||
|
||
4. Use `/lsauth {your 2af code}` to gained the `authenticated` context and gained your permission. | ||
|
||
5. Test again the command `lsauth-status {your pseudo}` -> {your pseudo} 2AF OK. | ||
|
||
### Commands : | ||
|
||
Command name | Permission | Description | ||
--- | --- | --- | ||
lsauth | none | On the first use, it will generate a totp key and qrcode | ||
lsauth {code} | none | Use this command to authenticate yourself with your TOTP code | ||
lsauth-status {player} | lsauth.cmd | Display the authentication status | ||
lsauth-reset {player/uuid} | none | Reset the totp key of a player (Usable in the bungeecord console only) | ||
|
||
|
||
### How to build : | ||
``` | ||
git clone https://github.com/PumpMyKins/LuckSecure.git | ||
cd LuckSecure | ||
mvn package | ||
``` | ||
|
||
### TODO | ||
- kick timer on join | ||
- custom totp key length |