示例#1
0
        // Reads native process info from a 64/32-bit process in the case where the target architecture
        // of this process is the same as that of the target process.
        private bool LoadProcessInfoNative(SafeProcessHandle handle, ProcessAccessFlags flags)
        {
            ProcessBasicInformation basicInfo = new ProcessBasicInformation();
            int size;
            int status = NativeMethods.NtQueryInformationProcess(
                handle,
                ProcessInfoClass.BasicInformation,
                ref basicInfo,
                MarshalUtility.UnmanagedStructSize <ProcessBasicInformation>(),
                out size);

            _parentProcessId = basicInfo.ParentProcessId.ToInt32();

            // If we can't load the ProcessBasicInfo, then we can't really do anything.
            if (status != NtStatus.Success || basicInfo.PebBaseAddress == IntPtr.Zero)
            {
                return(false);
            }

            if (flags.HasFlag(ProcessAccessFlags.VmRead))
            {
                // Follows a pointer from the PROCESS_BASIC_INFORMATION structure in the target process's
                // address space to read the PEB.
                Peb peb = MarshalUtility.ReadUnmanagedStructFromProcess <Peb>(
                    handle,
                    basicInfo.PebBaseAddress);

                _isBeingDebugged = peb.IsBeingDebugged;

                if (peb.ProcessParameters != IntPtr.Zero)
                {
                    // Follows a pointer from the PEB structure in the target process's address space to read
                    // the RTL_USER_PROCESS_PARAMS.
                    RtlUserProcessParameters processParameters = new RtlUserProcessParameters();
                    processParameters = MarshalUtility.ReadUnmanagedStructFromProcess <RtlUserProcessParameters>(
                        handle,
                        peb.ProcessParameters);

                    _commandLine = MarshalUtility.ReadStringUniFromProcess(
                        handle,
                        processParameters.CommandLine.Buffer,
                        processParameters.CommandLine.Length / 2);
                }
            }
            return(true);
        }
示例#2
0
        internal ProcessManager(string processName)
        {
            Process = GetProcess(processName);

            IsWow64 = IsProcessWow64();

            _memoryManager = new MemoryManager(Process.SafeHandle);

            Peb = GetPeb();

            Modules = GetModules();

            _assembler = new Assembler(IsWow64);

            _functionAddressCache = new Dictionary <string, IntPtr>();

            _pdbParser = new Lazy <PdbParser>(() => new PdbParser(Modules.Find(module => module.Name == "ntdll.dll")));

            EnableDebuggerPrivileges();
        }
示例#3
0
        internal ProcessManager(Process process, InjectionMethod injectionMethod)
        {
            Process = process;

            EnableDebuggerPrivileges();

            IsWow64 = GetProcessArchitecture();

            Memory = new Memory(process.SafeHandle);

            Peb = ReadPeb();

            Modules = GetModules();

            if (injectionMethod == InjectionMethod.CreateThread)
            {
                _functionCall = new CreateThread(Memory, process);
            }

            else
            {
                _functionCall = new HijackThread(Memory, process);
            }
        }