public override void Start()
        {
            _captureInterface = new Capture.Interface.CaptureInterface();
            _captureInterface.RemoteMessage += (message) => Debug.WriteLine(message.ToString());

            // Inject to process
            this.TargetProcess = this.Target;

            if (String.IsNullOrEmpty(this.TargetProcess))
            {
                //Logger.Warn("Configuration: No executable name has been provided to capture");
                return;
            }

            Inject();
            _stopped = false;
        }
Example #2
0
        public override void Start()
        {
            _captureInterface = new Capture.Interface.CaptureInterface();
            _captureInterface.RemoteMessage += (message) => Debug.WriteLine(message.ToString());

            // Inject to process
            this.TargetProcess = this.Target;

            if (String.IsNullOrEmpty(this.TargetProcess))
            {
                //Logger.Warn("Configuration: No executable name has been provided to capture");
                return;
            }

            Inject();
            _stopped = false;

        }