Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Rakkess | 1,103 | a month ago | 20 | November 01, 2021 | 9 | apache-2.0 | Go | |||
Review Access - kubectl plugin to show an access matrix for k8s server resources | ||||||||||
Mosquitto Go Auth | 391 | a month ago | 6 | March 11, 2021 | 6 | mit | Go | |||
Auth plugin for mosquitto. | ||||||||||
Go Plugins Helpers | 294 | 57 | 45 | a year ago | 3 | February 11, 2016 | 28 | apache-2.0 | Go | |
Go helper packages to extend the Docker Engine | ||||||||||
Wp Graphql Jwt Authentication | 287 | a day ago | 10 | May 16, 2022 | 63 | gpl-3.0 | PHP | |||
Authentication for WPGraphQL using JWT (JSON Web Tokens) | ||||||||||
Caddy Authz | 219 | 1 | 2 years ago | 3 | July 03, 2019 | 1 | apache-2.0 | Go | ||
Caddy-authz is a middleware for Caddy that blocks or allows requests based on access control policies. | ||||||||||
Docker Casbin Plugin | 210 | 4 months ago | apache-2.0 | Go | ||||||
Docker Casbin Plugin | ||||||||||
Authz | 200 | 3 years ago | January 12, 2016 | 10 | apache-2.0 | Go | ||||
Docker Authorization Plugin | ||||||||||
Rabbitmq Auth Backend Http | 196 | 2 years ago | other | Makefile | ||||||
HTTP-based authorisation and authentication for RabbitMQ | ||||||||||
Capacitor Oauth2 | 170 | 3 months ago | 47 | October 04, 2018 | 36 | mit | Java | |||
Generic Capacitor OAuth 2 client plugin! Stop the war in Ukraine! | ||||||||||
Negroni Authz | 153 | 5 years ago | May 24, 2021 | mit | Go | |||||
negroni-authz is an authorization middleware for Negroni |
vijos-bukkit-auth is a CraftBukkit plugin originated from MineLoginPlugin.
Login:
AtSpawn: true # teleport to spawnpoint
API:
HashMethod: md5 # hash method (md5/sha1/sha256/plain)
CheckCredentials: false # check SSL credentials
StatusURI: https://localhost/status # query user existance
LoginURI: https://localhost/login # check password
Your HTTP-API should return just one line with an integer.
0
: exists1
: banned2
: user not found<?php
if (!isset($_POST['username']))
{
echo '2';
exit();
}
$result = \user\is_exists($_POST['username']);
if ($result === true)
echo '0';
else
echo '2';
?>
0
: OK1
: password or username mismatch<?php
if (!isset($_POST['username']) || !isset($_POST['hash']))
{
echo '1';
exit();
}
$result = \user\login_with_md5($_POST['username'], $_POST['hash']);
if ($result === true)
echo '0';
else
echo '1';
?>
Please be free to contribute to this project!
GPL v3
Breezewish