c++ Programming Glossary: peb
What expressions create xvalues? http://stackoverflow.com/questions/11581903/what-expressions-create-xvalues
How to get list of GDI handles http://stackoverflow.com/questions/13905661/how-to-get-list-of-gdi-handles bitness 32 64 and on Windows version. use WinDbg dt ntdll _PEB command and search for GdiSharedHandleTable offset to find the.. GetCurrentProcess wow read basic info to get PEB address we only need the beginning of PEB DWORD pebSize GdiSharedHandleTableOffset.. info to get PEB address we only need the beginning of PEB DWORD pebSize GdiSharedHandleTableOffset 8 LPBYTE peb LPBYTE..
How to query a running process for it's parameters list? (windows, C++) http://stackoverflow.com/questions/6520428/how-to-query-a-running-process-for-its-parameters-list-windows-c info. Use the ProcessBasicInformation option to get the PEB of the process this contains another structure pointer through..
Getting another process command line in Windows http://stackoverflow.com/questions/6530565/getting-another-process-command-line-in-windows pbi PPROCESS_BASIC_INFORMATION UserPool BytesNeeded sizeof PEB res ZwReadVirtualMemory hProcess pbi PebBaseAddress UserPool.. hProcess pbi PebBaseAddress UserPool sizeof PEB BytesNeeded zero value returned peb PPEB UserPool BytesNeeded.. UserPool sizeof PEB BytesNeeded zero value returned peb PPEB UserPool BytesNeeded sizeof RTL_USER_PROCESS_PARAMETERS res..
How to get list of GDI handles http://stackoverflow.com/questions/13905661/how-to-get-list-of-gdi-handles to get PEB address we only need the beginning of PEB DWORD pebSize GdiSharedHandleTableOffset 8 LPBYTE peb LPBYTE malloc pebSize.. of PEB DWORD pebSize GdiSharedHandleTableOffset 8 LPBYTE peb LPBYTE malloc pebSize ZeroMemory peb pebSize if wow we're running.. GdiSharedHandleTableOffset 8 LPBYTE peb LPBYTE malloc pebSize ZeroMemory peb pebSize if wow we're running as a 32 bit..
Getting another process command line in Windows http://stackoverflow.com/questions/6530565/getting-another-process-command-line-in-windows UserPool sizeof PEB BytesNeeded zero value returned peb PPEB UserPool BytesNeeded sizeof RTL_USER_PROCESS_PARAMETERS.. res ZwReadVirtualMemory hProcess peb ProcessParameters UserPool sizeof RTL_USER_PROCESS_PARAMETERS..
|