AtlasC2/Implant/Tasks/Options/CMDShell.cs

16 lines
325 B
C#
Raw Normal View History

2021-12-26 17:40:51 -08:00
using System.Collections.Generic;
using Implant.Models;
using static Implant.Models.ImplantTaskOptions;
namespace Implant.Tasks.Options
{
class CMDShell : ImplantOptions
{
public override string TaskName => "CMDShell";
public override List<object> Data => new List<object> { command };
}
}