Suggestion for Reset Security Credentials page

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
User avatar
Box293
Too Basu
Posts: 5126
Joined: Sun Feb 07, 2010 10:55 pm
Location: Deniliquin, Australia
Contact:

Suggestion for Reset Security Credentials page

Post by Box293 »

On the Reset Security Credentials page, the field next to "New Config Manager Admin Password:" will remember previous passwords you have typed in.

You can see the previous passwords in plain text.

I have experienced this with both IE and Firefox.

Screenshot shows the field I am talking about.

Perhaps this field should be changed so it doesn't remember values that have been typed here.
Field that password is remembered in Firefox.png
You do not have the required permissions to view the files attached to this post.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
mmestnik
Posts: 972
Joined: Mon Feb 15, 2010 2:23 pm

Re: Suggestion for Reset Security Credentials page

Post by mmestnik »

This screen should by design be static, it's not meant to randomize the passwords. Instead it pushes the value provided to the password store and the password database. It should always display the password in the password store.
User avatar
Box293
Too Basu
Posts: 5126
Joined: Sun Feb 07, 2010 10:55 pm
Location: Deniliquin, Australia
Contact:

Re: Suggestion for Reset Security Credentials page

Post by Box293 »

On my computer I go to the Reset Security Credentials page
I type the nagiosadmin password in the field next to "New Config Manager Admin Password:"
I click Update Credentials
I log out of Nagis XI
I walk away from the computer without locking the screen
Another person jumps on my computer and logs into Nagios XI
They go to the Reset Security Credentials page
They double click in the field next to "New Config Manager Admin Password:"
Any entries typed by me in the past will appear here in a list.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
mmestnik
Posts: 972
Joined: Mon Feb 15, 2010 2:23 pm

Re: Suggestion for Reset Security Credentials page

Post by mmestnik »

If they have the admin password, they have the admin password. Though perhaps there are some browser cache issues to consider.

http://go.nagios.com/tracker/64
tonyyarusso
Posts: 1128
Joined: Wed Mar 03, 2010 12:38 pm
Location: St. Paul, MN, USA
Contact:

Re: Suggestion for Reset Security Credentials page

Post by tonyyarusso »

I would agree that it would be a lot smarter IMO if that particular field was set to a password input type, given how this operates.
Tony Yarusso
Technical Services
___
TIES
Web: http://ties.k12.mn.us/
lccouncil
Posts: 25
Joined: Mon Jun 14, 2010 6:05 pm

Re: Suggestion for Reset Security Credentials page

Post by lccouncil »

If your overly worried about it.. Jump into the HTML files for that page and add

autocomplete="off"

To the form attributes.
:)
lccouncil
Posts: 25
Joined: Mon Jun 14, 2010 6:05 pm

Re: Suggestion for Reset Security Credentials page

Post by lccouncil »

To do that.. Go to the file /usr/local/nagiosxi/html/admin/credentials.php

On line 98 change from

Code: Select all

<form id="manageOptionsForm" method="get" action="<?php echo $_SERVER['PHP_SELF'];?>">
to

Code: Select all

<form id="manageOptionsForm" autocomplete="off" method="get" action="<?php echo $_SERVER['PHP_SELF'];?>">
User avatar
Box293
Too Basu
Posts: 5126
Joined: Sun Feb 07, 2010 10:55 pm
Location: Deniliquin, Australia
Contact:

Re: Suggestion for Reset Security Credentials page

Post by Box293 »

Great tip.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
lccouncil
Posts: 25
Joined: Mon Jun 14, 2010 6:05 pm

Re: Suggestion for Reset Security Credentials page

Post by lccouncil »

Glad to help.
Locked