All Projects → AndreyBazhan → DbgExt

AndreyBazhan / DbgExt

Licence: MIT license
Debugger extension for the Debugging Tools for Windows (WinDbg, KD, CDB, NTSD).

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to DbgExt

cfgdump
Windbg extension that allows you analyze Control Flow Guard map
Stars: ✭ 18 (-70.97%)
Mutual labels:  windbg, windbg-extension
PrivFu
Kernel mode WinDbg extension and PoCs for token privilege investigation.
Stars: ✭ 244 (+293.55%)
Mutual labels:  windbg, windbg-extension
windbgtree
A command tree based on commands and extensions for Windows Kernel Debugging.
Stars: ✭ 94 (+51.61%)
Mutual labels:  windbg, windbg-extension
windbg-extensions
Extensions for the new WinDbg
Stars: ✭ 59 (-4.84%)
Mutual labels:  windbg, windbg-extension
Twindbg
PEDA-like debugger UI for WinDbg
Stars: ✭ 171 (+175.81%)
Mutual labels:  windbg
Voltron
A hacky debugger UI for hackers
Stars: ✭ 5,599 (+8930.65%)
Mutual labels:  windbg
Dbgshell
A PowerShell front-end for the Windows debugger engine.
Stars: ✭ 566 (+812.9%)
Mutual labels:  windbg
Superdump
A service for automated crash-dump analysis
Stars: ✭ 384 (+519.35%)
Mutual labels:  windbg
Prevent Process Creation
Record & prevent process creation in kernel mode
Stars: ✭ 31 (-50%)
Mutual labels:  windbg
windbg-workspace
No description or website provided.
Stars: ✭ 23 (-62.9%)
Mutual labels:  windbg
Reverse Engineering Arsenal
Useful Scripts for helping in reverse engeenering
Stars: ✭ 137 (+120.97%)
Mutual labels:  windbg
Winobjex64
Windows Object Explorer 64-bit
Stars: ✭ 775 (+1150%)
Mutual labels:  windbg
Debuggingextensions
Host of debugging-related extensions such as post-mortem tools or WinDBG extensions
Stars: ✭ 177 (+185.48%)
Mutual labels:  windbg
Memoscope.net
Dump and analyze .Net applications memory ( a gui for WinDbg and ClrMd )
Stars: ✭ 626 (+909.68%)
Mutual labels:  windbg
SQLCallStackResolver
Utility to resolve SQL Server callstacks to their correct symbolic form using just PDBs and without a dump file
Stars: ✭ 55 (-11.29%)
Mutual labels:  windbg
Wdbgark
WinDBG Anti-RootKit Extension
Stars: ✭ 450 (+625.81%)
Mutual labels:  windbg
Iris
WinDbg extension to display Windows process mitigations
Stars: ✭ 129 (+108.06%)
Mutual labels:  windbg
Awesome Reverse Engineering
Reverse Engineering Resources About All Platforms(Windows/Linux/macOS/Android/iOS/IoT) And Every Aspect! (More than 3500 open source tools and 2300 posts&videos)
Stars: ✭ 2,954 (+4664.52%)
Mutual labels:  windbg
Kdmp Parser
Windows kernel dump C++ parser with Python 3 bindings.
Stars: ✭ 71 (+14.52%)
Mutual labels:  windbg
Windbg Scripts
A bunch of JavaScript extensions for WinDbg.
Stars: ✭ 158 (+154.84%)
Mutual labels:  windbg

DbgExt

Debugger extension for the Debugging Tools for Windows (WinDbg, KD, CDB, NTSD).

Commands

  • st - Displays system service table
  • idt - Displays interrupt descriptor table

How to Debug

  1. Open the project in Visual Studio.
  2. In Solution Explorer, open the shortcut menu for your project and then choose Properties.
  3. In the Property Pages dialog box, open the Configuration drop-down list and then select Debug.
  4. In the Property Pages dialog box, open the Platform drop-down list and then select Win32 or x64.
  5. In the left pane of the dialog box, expand Configuration Properties and then select Debugging.
  6. In the right pane, select Command and then set the path to the WinDbg.exe: C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x64\windbg.exe or C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x86\windbg.exe
  7. In the right pane, select Command Arguments and then set the command line arguments: -c ".prefer_dml 1;.load dbgext" -z "D:\CrashDumps\livekd.dmp"
  8. In the right pane, select Environment and then set the PATH environment variable: PATH=$(OutDir);%PATH%
  9. Choose the OK button.
  10. Press F5 or use Debug > Start Debugging to debug.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].