using System; using System.Collections.Generic; namespace Client.Models { class Client { public static bool Debug { get; set; } = false; public static string TaskName { get; set; } public static string argData { get; set; } public static string sendData { get; set; } public static byte[] assemBytes { get; set; } public static string TeamServerAddr { get; set; } public static string ConnectAddr { get; set; } public static string CurrentImplant { get; set; } public static string ImplantAddr { get; set; } //public static bool ImplantStatus { get; set; } public static bool running = true; public static string Prompt = "> "; public const string Ver = "v1.0"; public static List ImplantList = new List(); public static List ListenerList = new List(); public static List Tasks = new List(); public static readonly List _utils = new List(); public static readonly List _opts = new List(); public static readonly List _adminTask = new List(); } }