Orchestrator installation

Hi,

What is the default user and password once the Orchestrator installation is finished?

Regards,

1 Like

I am having the same issue.

Has anyone managed to login?

Regards,

Hello,

I do not know what the default password is.

Anyway, I could see that they use the Crypto libraries (.Net)

  • Crypto.HashPassword Method (Returns an RFC 2898 hash value for the specified password.)
  • Crypto.VerifyHashedPassword Method (Determines whether the specified RFC 2898 hash and password are a cryptographic match.)

I have generated a new password using HashPassword Method and I inserted it into the BBDD (User Table).

I hope it helps you

Hi fmarchig,
Thanks for your quick answer.
However I have no experience using both .Net or cryptography, can you give me some guidance on how to do it?

Hi Fernando,

This code will enable you to generated a new password:

//Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5

using System;
using System.Security.Cryptography;

namespace Test
{
    public class GeneratePassWord
    {
        public static void Main(string[] args)
        {
            byte[] salt;
            byte[] bytes;
            Rfc2898DeriveBytes rfc2898DeriveBytes = new Rfc2898DeriveBytes("Insert Password", 16, 1000);
    
            salt = rfc2898DeriveBytes.Salt;
            bytes = rfc2898DeriveBytes.GetBytes(32);
    
            byte[] array = new byte[49];
            Buffer.BlockCopy(salt, 0, array, 1, 16);
            Buffer.BlockCopy(bytes, 0, array, 17, 32);
    
            Console.WriteLine(Convert.ToBase64String(array)); //Return Password RFC 2898 hash value
        }
    }
}
1 Like

Thank you @fmarchig !