using AsyncRAT_Sharp.Cryptography; using AsyncRAT_Sharp.Sockets; using System.Collections.Generic; namespace AsyncRAT_Sharp { class Settings { public static List Online = new List(); public static List Blocked = new List(); public static string Port = "6606,7707,8808"; public static readonly string Version = "AsyncRAT 0.2.8E"; public static long Sent = 0; public static long Received = 0; public static string Password = "NYAN CAT"; public static Aes256 aes256; } }