From 63f712ac6739aae4a8a5566a89c751c8fee77bb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=BB=E9=93=AD?= Date: Sat, 18 Oct 2025 14:03:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A08.x=E5=85=BC=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- C#/XClass.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C#/XClass.cs b/C#/XClass.cs index 7027d02..1680886 100644 --- a/C#/XClass.cs +++ b/C#/XClass.cs @@ -105,7 +105,7 @@ public static string Xdecrypt(Xsh xsh, Utils.UserSID userSID) Array.Copy(data, 0, passData, 0, data.Length - 0x20); byte[] decrypted = RC4.Decrypt(Key, passData); password = Encoding.Default.GetString(decrypted); - }else if (xsh.version.StartsWith("7")) + }else if (xsh.version.StartsWith("7") || xsh.version.StartsWith("8")) { string strkey1 = new string(userSID.Name.ToCharArray().Reverse().ToArray()) + userSID.SID; string strkey2 = new string(strkey1.ToCharArray().Reverse().ToArray());