mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Use Laravel for authentication Support legacy auth methods Always create DB entry for users (segregate by auth method) Port api auth to Laravel restrict poller errors to devices the user has access to Run checks on every page load. But set a 5 minute (configurable) timer. Only run some checks if the user is an admin Move toastr down a few pixels so it isn't as annoying. Fix menu not loaded on laravel pages when twofactor is enabled for the system, but disabled for the user. Add two missing menu entries in the laravel menu Rewrite 2FA code Simplify some and verify code before applying Get http-auth working Handle legacy $_SESSION differently. Allows Auth::once(), etc to work. * Fix tests and mysqli extension check * remove duplicate Toastr messages * Fix new items * Rename 266.sql to 267.sql
38 lines
952 B
PHP
Executable File
38 lines
952 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/*
|
|
* LibreNMS
|
|
*
|
|
* This file is part of LibreNMS.
|
|
*
|
|
* @package LibreNMS
|
|
* @subpackage cli
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
use LibreNMS\Authentication\LegacyAuth;
|
|
|
|
$init_modules = array();
|
|
if (php_sapi_name() != 'cli') {
|
|
$init_modules[] = 'auth';
|
|
}
|
|
require __DIR__ . '/includes/init.php';
|
|
|
|
if (LegacyAuth::get()->canManageUsers()) {
|
|
if (isset($argv[1]) && isset($argv[2]) && isset($argv[3])) {
|
|
if (!LegacyAuth::get()->userExists($argv[1])) {
|
|
if (LegacyAuth::get()->addUser($argv[1], $argv[2], $argv[3], @$argv[4])) {
|
|
echo 'User '.$argv[1]." added successfully\n";
|
|
}
|
|
} else {
|
|
echo 'User '.$argv[1]." already exists!\n";
|
|
}
|
|
} else {
|
|
echo "Add User Tool\nUsage: ./adduser.php <username> <password> <level 1-10> [email]\n";
|
|
}
|
|
} else {
|
|
echo "Auth module does not allow adding users!\n";
|
|
}//end if
|