Skip to content

Instantly share code, notes, and snippets.

@tsmoreland
Last active August 11, 2021 14:20
Show Gist options
  • Save tsmoreland/e7f2ec6672964b8f0a9e0820b905835d to your computer and use it in GitHub Desktop.
Save tsmoreland/e7f2ec6672964b8f0a9e0820b905835d to your computer and use it in GitHub Desktop.
windbg notes

windbg general notes

Useful commands to remember

  • load all symbols ld *

  • enable noisy symbols (helps find missing symbol files, etc...)

    !sym noisy
    
  • list symbols for a given assembly (Assembly repreents file minus extension)

    x Assembly!* 
    x Assembly!Namespace::subNamespace::Class*
    
  • break point usage

    bp Assembly!Function
    bp Test!WinMain 
    bp Test!main
    

Break on CLR Exceptions

  • To Enable sxe clr then go to handled/unhandled exception either by command or menu
  • To Disable sxd clr
  • To view current status use sx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment