When Nagios XI is configured for active directory authentication, what gets hashed into the database and/or /usr/local/nagiosxi/etc/htpasswd.users?
are passwords saved on the server or do they just get passed through to AD?
hashed passwords?
Re: hashed passwords?
XI will not save the password. Each time an AD user tries to log into XI XI just passes the credentials through to the DC.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Re: hashed passwords?
Thanks, so what is hashed in the DB then?
Re: hashed passwords?
They're generated from random strings at the time that the user account is created. Index /usr/local/nagiosxi/html/includes/components/ldap_ad_integration/index.php:
Code: Select all
$password = random_string(12);As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.