NYAN CAT 4c1782bb01 Update v0.4.9D
-Added option to clear logs
-Added torrent seed
-Added send client's exception
-Added temp socket class
-Added change icon and assmelby
-Fixed remote desktop
-Fixed thumbnails
-Update form1 menu
-Updated builder and notification - idea by @zeroal3nzi
2019-05-24 05:58:12 +03:00

22 lines
728 B
C#

using AsyncRAT_Sharp.Cryptography;
using AsyncRAT_Sharp.Sockets;
using System.Collections.Generic;
using System.IO;
using System.Security.Cryptography.X509Certificates;
using System.Windows.Forms;
namespace AsyncRAT_Sharp
{
public static class Settings
{
public static List<Clients> Online = new List<Clients>();
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.4.9D";
}
}