Command line tools

WinAppDbg comes with a collection of tools useful for common tasks when debugging or fuzzing a program. The most important tool, the Crash logger, attaches to any number of target processes and collects crash dump information in a SQL database. It can also apply heuristics to discard multiple occurrences of the same crash.

The source code of these tools can also be read for more examples on programming using WinAppDbg.

Crash logger

_images/crash_logger1.png
  • crash_logger.py :

    Attaches as a debugger or starts a new process for debugging. Whenever an interesting debug event occurs (i.e. a bug is found) it can save the info to a database (SQLite, MySQL, SQL Server, etc.) and/or log it through standard output.

    A heuristic signature can be used to try to determine whether two crashes were caused by the same bug, in order to discard duplicates. It can also try to guess how exploitable would the found crashes be, using similar heuristics to those of !exploitable.

    Additional features allow attaching to system services, setting breakpoints at the target process(es), attaching to spawned child processes, restarting crashed processes, and running a custom command when a crash is found.

    Settings are defined in a Unix-style configuration file. Here’s a template file you can use, where all options are explained.

  • crash_report.py :

    Shows the contents of the crashes database to standard output.

Process tools

These tools were inspired by the ptools suite by Nicolás Economou.

  • pdebug.py :

    Extremely simple command line debugger. It’s main feature is being written entirely in Python, so it’s easy to modify or write plugins for it.

  • ptrace.py :

    Traces execution of a process. It supports three methods: single stepping, single stepping on branches, and native syscall hooking.

  • pinject.py :

    Forces a process to load a DLL library of your choice.

  • pfind.py :

    Finds the given text, binary data, binary pattern or regular expression in a process memory space.

  • plist.py :

    Shows a list of all currently running processes.

  • pmap.py :

    Shows a map of a process memory space.

  • pread.py :

    Reads the memory contents of a process to standard output or any file of your choice.

  • pwrite.py:

    Writes to the memory of a process from the command line or any file of your choice.

  • pkill.py :

    Terminates a process or a batch of processes.

Miscellaneous