NYAN CAT 90ffd47eb9 Update
Added Tasks
Added connect via pastebin
Fixed file manager (upload)
Updated client install (vbs)
2019-05-16 14:13:17 +03:00

23 lines
776 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 string Port { get; set; }
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.8d";
}
}