24 lines
827 B
C#
24 lines
827 B
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.2";
|
|
public static object LockListviewClients = new object();
|
|
public static object LockListviewLogs = new object();
|
|
public static object LockListviewThumb = new object();
|
|
}
|
|
}
|