Utilities for decrypting and hashing SolarWinds Orion credentials
- Open the Database Manager, select "Add default database".
- Browse to the Accounts table, determine which user to reset.
- Run the hash-password.rb script with your username and new password:
$ ruby hash-password.rb admin letmein
User 'admin' with password 'letmein' has hash '5BqFpldsj5H9nbkkLjB+Cdi7WCXiUp5zBpO9Xs7/MKnnQAI0IE9gH+58LlS7/+a/7x1wWScI2iCGEtukgTiNeA=='
- Execute a SQL query to update the password hash accordingly:
UPDATE [Accounts]
SET [AccountEnabled] = 'Y',
[PasswordHash]='5BqFpldsj5H9nbkkLjB+Cdi7WCXiUp5zBpO9Xs7/MKnnQAI0IE9gH+58LlS7/+a/7x1wWScI2iCGEtukgTiNeA=='
WHERE [AccountID]='admin'
- Login with the new password.