It is a basic WinDbg extension that allows you to inspect process details. It offers a collection of commands for inspecting processes and their related modules:
pslist
dlllist
psdetails
threads
Note: This has only been tested on Windows 10 (10.0.19041.1).It may not work as expected on other versions.
Download the DbgExtension.dll
- !pslist : This command will list down the all running process by parsing
_EPROCESS
structure.
Output
0: kd> !pslist
Process Process Name PID PPID Threads VS(MB) PVS(MB) CreateTime(UTC+0)
=====================================================================================================================
0xffffc509b8884040 System 4 2 164 3 14 2024-10-12 12:19:30.253
0xffffc509b88cb080 Registry 108 6 4 90 125 2024-10-12 12:19:18.884
0xffffc509baaf4040 smss.exe 344 6 2 2101287 2101295 2024-10-12 12:19:30.257
0xffffc509ba45c140 csrss.exe 456 446 10 2101335 2101337 2024-10-12 12:19:31. 1
0xffffc509bc17d080 wininit.exe 532 446 2 2101314 2101326 2024-10-12 12:19:31.135
0xffffc509bc16f080 csrss.exe 540 526 13 2101363 2101371 2024-10-12 12:19:31.140
......
......
- dlllist: This command will list all loaded DLL files for each process. It enumerates the
_PEB
structure of each process, accesses the_PEB_LDR_DATA
, and traverses theInLoadOrderModuleList
to retrieve loaded modules.
Output
0: kd> !dlllist
PID ProcessName DllName ImageSize DLLPath ImageBase RefCnt LoadReason
624 winlogon.exe ntdll.dll 0x1f8000 C:\Windows\SYSTEM32\ntdll.dll 0x7ffe5edb0000 2 StaticDependency
624 winlogon.exe KERNEL32.DLL 0xbf000 C:\Windows\System32\KERNEL32.DLL 0x7ffe5e530000 2 DynamicLoad
624 winlogon.exe KERNELBASE.dll 0x2f6000 C:\Windows\System32\KERNELBASE.dll 0x7ffe5ca70000 1 StaticDependency
624 winlogon.exe msvcrt.dll 0x9e000 C:\Windows\System32\msvcrt.dll 0x7ffe5cef0000 2 StaticDependency
624 winlogon.exe sechost.dll 0x9c000 C:\Windows\System32\sechost.dll 0x7ffe5e430000 2 StaticDependency
624 winlogon.exe RPCRT4.dll 0x126000 C:\Windows\System32\RPCRT4.dll 0x7ffe5cf90000 2 StaticDependency
624 winlogon.exe combase.dll 0x354000 C:\Windows\System32\combase.dll 0x7ffe5d550000 2 StaticDependency
624 winlogon.exe ucrtbase.dll 0x100000 C:\Windows\System32\ucrtbase.dll 0x7ffe5c5f0000 2 StaticDependency
624 winlogon.exe advapi32.dll 0xaf000 C:\Windows\System32\advapi32.dll 0x7ffe5ddf0000 2 StaticDependency
.....
.....
psdetails: This command will show slight detailed information about the processes like Eprocess
, Cookie
, Token
, CommandLine
, WindowTitle
, DesktopInfo
etc.
Output
0: kd> !psdetails
Loaded Requirements
......
.......
Process : mspaint.exe
PID : 2144
EProceess : ffffc509bfeee080
Cookie : 0x104a1bfd
Token : ffff9901126a35f2
SectionObject : ffff99010fc06770
SectionBaseAddress : 00007ff7f56e0000
ProcessQuotaUsage : 000001d681bd3818
ProcessQuotaPeak : 000001d681bd3828
CurrDirHandle : 0000000000000040
CommandLine : "C:\Windows\system32\mspaint.exe"
WindowTitle : C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Accessories\Paint.lnk
DesktopInfo : Winsta0\Default
StartingX : 0
StartingY : 0
threads: This command will display active threads of each process with their StartAddress, StartTime, ExitTime, TID and so on.
Output
0: kd> !threads
ETHREAD PID TID StartAddress ProcessName CreateTime(UTC) ExitTime(UTC)
ffffc509b887c040 4 12 fffff8071e3e35e0 System 1601-1 -1 0 :0 :0 .306 -
ffffc509b8879080 4 16 fffff8071e3b44d0 System 1601-1 -1 0 :0 :0 .306 -
ffffc509b889c400 4 20 fffff8071e3b44d0 System 1601-1 -1 0 :0 :0 .306 -
ffffc509b8885040 4 24 fffff8071e7e8ca0 System 1601-1 -1 0 :0 :0 .306 -
ffffc509b8897340 4 28 fffff8071e7bea90 System 2024-10-12 12:19:17.754 -
ffffc509b89d6140 4 36 fffff8071e3cdf60 System 2024-10-12 12:19:17.820 -
ffffc509b89da140 4 40 fffff8071e3cc110 System 2024-10-12 12:19:17.821 -
[[.....]]
[[.....]]
ffffc509c1f2b080 1372 7440 7ffe5ee02680 conhost.exe 2024-10-12 12:57:57.528 -
ffffc509bd3d5080 1372 8088 7ffe5ee02680 conhost.exe 2024-10-12 12:57:57.529 -
ffffc509bde32080 1372 8000 7ffe5ee02680 conhost.exe 2024-10-12 12:57:57.529 -
ffffc509bc1e3080 1372 8104 7ffe5ee02680 conhost.exe 2024-10-12 12:57:57.542 -
ffffc509b891c080 1372 2348 7ffe5ee02680 conhost.exe 2024-10-12 12:57:57.542 -
ffffc509c1dd6080 1372 2924 7ffe5ee02680 conhost.exe 2024-10-12 12:57:57.578 -
ffffc509c1bb3040 1372 5772 7ffe5ee02680 conhost.exe 2024-10-12 12:57:58.120 -
help: For help
0: kd> !help
DbgExtension Help
supported commands
process [flags] - Process Information
dlllist - Dll List
psdetails - displays detail info about process
0: kd> !pslist -h
Process [flags]
-p: Sort by process id
-a: Sort by Activethreads
-v: Sort by VirtualSize
-pvs: Sort by PeakVirtualSize
-ct: Sort by CreationTime
-n: Sort by ProcessName
-nr: Sort by ProcessName reverse