Programming guide¶
This guide will show you through the most commonly used classes and methods of the WinAppDbg module, and provide some examples of use for each one. The goal is to give you a bird’s eye perspective on what the library can do and how, without having to go through the reference material.
- Instrumentation
- The System class
- The Process class
- Example #4: enumerating threads and DLL modules in a process
- Example #5: killing a process
- Example #6: reading the process memory
- Example #7: getting the command line for a process
- Example #8: getting the environment variables for a process
- Example #9: loading a DLL into the process
- Example #10: getting the process memory map
- Example #11: searching the process memory
- Example #12: dumping ASCII strings from the process memory
- The Thread class
- The Module class
- The Window class
- Back to the System class
- Debugging
- Helper classes and functions
- The Win32 API wrappers
- More examples
- Advanced topics