AtlasC2/Client/Utils/ClientUtils/Exit.cs

12 lines
285 B
C#
Raw Normal View History

2021-12-26 17:40:51 -08:00
using System;
namespace Client.Utils
{
class Exit : Models.Util
{
public override string UtilName => "Exit";
public override string Desc => "Exit AtlasC2";
public override string UtilExecute(string[] opts){ Environment.Exit(0); return ""; }
}
}