Move Web Server Commands to their own Namespace

This commit is contained in:
Leurak 2016-07-21 19:40:46 +02:00
parent 4f2354e7fb
commit 233a7b0a3a
7 changed files with 7 additions and 6 deletions

View file

@ -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
{

View file

@ -6,7 +6,7 @@ using System.Web;
using TrollRAT.Payloads;
namespace TrollRAT.Server
namespace TrollRAT.Server.Commands
{
public abstract class DetailCommandBase : WebServerCommand
{

View file

@ -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
{

View file

@ -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
{

View file

@ -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
{

View file

@ -8,7 +8,7 @@ using TrollRAT.Payloads;
using TrollRAT.Plugins;
using TrollRAT.Utils;
namespace TrollRAT.Server
namespace TrollRAT.Server.Commands
{
public class RootCommand : WebServerCommand
{

View file

@ -10,6 +10,7 @@ using TrollRAT.Utils;
using TrollRAT.Actions;
using TrollRAT.Server.Injections;
using System.Reflection;
using TrollRAT.Server.Commands;
namespace TrollRAT.Server
{