Metadata-Version: 1.1
Name: winappdbg
Version: 1.2
Summary: Windows application debugging engine
Home-page: http://winappdbg.sourceforge.net/
Author: Mario Vilas
Author-email: mvilas@gmail.com
License: UNKNOWN
Download-URL: http://sourceforge.net/projects/winappdbg/
Description: 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. Several
        ready to use utilities are shipped and can be used for this purposes.
        
        Current features also include disassembling x86 native code (using the open
        source diStorm project, see http://ragestorm.net/distorm/), debugging multiple
        processes simultaneously and produce a detailed log of application crashes,
        useful for fuzzing and automated testing.
        
        
        Where can I find WinAppDbg?
        ===========================
        
        The WinAppDbg project is currently hosted at Sourceforge, and can be found at:
        
        http://winappdbg.sourceforge.net/
        
        It's also hosted at the Python Package Index (PyPi):
        
        http://pypi.python.org/pypi/winappdbg/1.2
        
Platform: win32
Platform: cygwin
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Bug Tracking
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: ctypes
