NYAN CAT d1b57f4291 Update
fixed bugs
added Gzip compress/decompress for packets
2019-10-05 12:25:13 +03:00

28 lines
1.1 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 long Sent { get; set; }
public static long Received { get; set; }
public static string CertificatePath = Application.StartupPath + "\\ServerCertificate.p12";
public static X509Certificate2 ServerCertificate;
public static readonly string Version = "AsyncRAT 0.5.4B";
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 Dictionary<string, string> Plugins = new Dictionary<string, string>();
}
}