| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Small PoC to enumerate local processes and read each process' PEB (via NtQueryInformationProcess + ReadProcessMemory) to display command line, image path and a few PEB fields.
Uses community NT-internals headers (PHNT / systeminformer-style) so the PoC can rely on correct PEB / RTL_USER_PROCESS_PARAMETERS / PROCESS_BASIC_INFORMATION types.
Visual Studio
Run from an elevated prompt to maximize the number of readable processes:
.\remote-PEB.exeThis example is redacted to avoid leaking usernames, hostnames or absolute paths.
.\remote-PEB.exe
PID 12212:
CommandLine: "C:\Program Files\<Vendor>\<App>\app.exe" -f "<redacted-log>" -p 30000
ImagePathName: C:\Program Files\<Vendor>\<App>\app.exe
BeingDebugged: 0
ImageBaseAddress: 0xE32F0000
OSMajorVersion: 10
OSMinorVersion: 0
OSBuildNumber: 26100
OSCSDVersion: 0
PID 12984:
CommandLine: sihost.exe
ImagePathName: C:\Windows\System32\sihost.exe
BeingDebugged: 0
ImageBaseAddress: 0xAAAAFFFF
OSMajorVersion: 10
OSMinorVersion: 0
OSBuildNumber: 26100
OSCSDVersion: 0
PID 11872:
CommandLine: C:\Windows\System32\svchost.exe -k UnistackSvcGroup -s <ServiceName>
ImagePathName: C:\Windows\System32\svchost.exe
BeingDebugged: 0
ImageBaseAddress: 0xDEADBEEF
OSMajorVersion: 10
OSMinorVersion: 0
OSBuildNumber: 26100
OSCSDVersion: 0
| Back | FazBrowse Home | New Git URL |