AtlasC2/Client/Utils/TaskUtils/AssemMethodQuery.cs

14 lines
410 B
C#
Raw Permalink Normal View History

2021-12-26 17:40:51 -08:00
using System.Collections.Generic;
using static Client.Models.TaskOptions;
namespace Client.Utils
{
class AssemMethodQuery : Models.Task
{
public override string TaskName => "AssemMethodQuery";
public override string Desc => "Returns all methods belonging to the specified assem name";
public override List<object> OptList { get; } = new List<object> { assemName };
}
}