Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mariovilas/winappdbg
WinAppDbg Debugger
https://github.com/mariovilas/winappdbg
crash-dump debugger fuzzing infosec malware-analysis malware-research python winappdbg windows
Last synced: 1 day ago
JSON representation
WinAppDbg Debugger
- Host: GitHub
- URL: https://github.com/mariovilas/winappdbg
- Owner: MarioVilas
- Created: 2014-05-25T15:44:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-06-27T08:58:15.000Z (over 1 year ago)
- Last Synced: 2025-01-04T05:18:34.419Z (8 days ago)
- Topics: crash-dump, debugger, fuzzing, infosec, malware-analysis, malware-research, python, winappdbg, windows
- Language: Python
- Size: 7.73 MB
- Stars: 449
- Watchers: 30
- Forks: 112
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
What is WinAppDbg?
==================The WinAppDbg python module allows developers to quickly code instrumentation
scripts in Python under a Windows environment.It uses ctypes to wrap many Win32 API calls related to debugging, and provides
an object-oriented abstraction layer to manipulate threads, libraries and
processes, attach your script as a debugger, trace execution, hook API calls,
handle events in your debugee and set breakpoints of different kinds (code,
hardware and memory). Additionally it has no native code at all, making it
easier to maintain or modify than other debuggers on Windows.The intended audience are QA engineers and software security auditors wishing to
test / fuzz Windows applications with quickly coded Python scripts, as well as malware
analysts and researchers wishing to instrument and test Windows binaries. Several
ready to use utilities are shipped and can be used for this purposes.Current features also include disassembling x86/x64 native code, debugging
multiple processes simultaneously and produce a detailed log of application
crashes, useful for fuzzing and automated testing.Where can I find WinAppDbg?
===========================* [Homepage](https://github.com/MarioVilas/winappdbg/)
* [Source code](https://github.com/MarioVilas/winappdbg/releases/tag/winappdbg_v1.6)
* [Documentation](http://winappdbg.readthedocs.io/en/latest/)