From c28dac397919efc04f786399fbadac8d2cb10369 Mon Sep 17 00:00:00 2001 From: Administrator Date: Sun, 4 Aug 2019 15:06:28 -0400 Subject: [PATCH] Update README.md --- README.md | 45 ++++++++++++++++++++++++++++++++++++--------- 1 file changed, 36 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 987c449..043e9d3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Pykd - python extension for WinDBG +# Pykd - not only python extension for WinDBG ## Purpose This project can help to automate debugging and crash dump analysis using Python. It allows one to take the best from both worlds: the expressiveness and convenience of Python with the power of WinDbg! @@ -6,18 +6,35 @@ This project can help to automate debugging and crash dump analysis using Python ## Why do I need this? If you want to automate the debugger but dislike the WinDbg built-in script machine syntax it's time to try again using the handy and powerful Python language. Even if you don't want to create your own script, maybe some existing scripts will be of interest to you? -## Pykd bootstrapper -Use it to run pykd within windbg. [link](https://githomelab.ru/pykd/pykd-ext) +## Getting started +* You should have installed python. Supported python: 2.7, 3.5, 3.6 and 3.7 +* Install pykd with command: 'pip install pykd' +* Use pykd bootstrapper to run pykd with windbg -## Releases: -[All Release](/../wikis/All Releases) -[PyPi](https://pypi.org/project/pykd) -Just run 'pip install pykd' to install or 'pip install pykd --upgrade' to upgrade to the last version +## Pykd bootstrapper +Use it to run pykd within windbg. +[Home Page](https://githomelab.ru/pykd/pykd-ext) +[Download](https://githomelab.ru/pykd/pykd-ext/wikis/Downloads) ## Documentation [Wiki Home](/../wikis/Home) [User Manual](/../wikis/User Manual rus) -[API Reference](/../wikis/API Reference) +[API Reference](/../wikis/API Reference) + +## Useful tools for pykd and WinDBG +[windbg-pack](https://githomelab.ru/pykd/windbg-pack) +Set of python scripts for WinDBG + +[pykdwin](https://githomelab.ru/pykd/pykdwin) +A library with auxiliary modules for writing small pykd scripts and daily use. + +[windbg-kernel](https://githomelab.ru/pykd/windbg-kernel) +Set of pykd script for kernel debugging + +## Releases +[All Releases](/../wikis/All Releases) +[PyPi](https://pypi.org/project/pykd) +Just run 'pip install pykd' to install or 'pip install pykd --upgrade' to upgrade to the last version ## How to build ? * install VS 2017 @@ -35,4 +52,14 @@ https://git-scm.com/ git clone --recurse-submodules https://githomelab.ru/pykd/pykd.git local_dir ``` * open pykd.sln -* choose a python version and a target platform then build pykd projects \ No newline at end of file +* choose a python version and a target platform then build pykd projects + +## Projects used pykd +[mona.py](https://github.com/corelan/mona) +the exploit writer's swiss army knife + +[flare-dbg](https://github.com/fireeye/flare-dbg) +flare-dbg is a project meant to aid malware reverse engineers in rapidly developing debugger scripts. + +[voltron](https://github.com/snare/voltron) +Voltron is an extensible debugger UI toolkit written in Python \ No newline at end of file