RDODecrypt
Remote Desktop Organizer 密码破解
Install / Use
/learn @Hzllaga/RDODecryptREADME
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 "";
}
}

Related Skills
node-connect
342.5kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
85.3kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
342.5kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
342.5kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
