Git Product home page Git Product logo

watchdbg-ida's Introduction

WatchDBG-IDA

Add a watch view to your IDA 7.0 similar to Visual Studio's watch view!

Install

Put everything in src directory to plugins directory of your IDA installation.

Usage

While you are debugging...

  • Shift + A to add a watch.
  • Shift + W to show watch view.

And just continue debugging. Changed values in watch will be automatically updated.

Add Dialog

  • You can type memory address (0x4003a8, 602194)
  • Expressions are also allowed (0x4007b0 + 0x10 * 4)
  • Or use register's value (rsp, rbp-0x48)

Watch View Window

  • Click X button to remove all watches.
  • Click + button or press A key to add a new watch.
  • Click T button or press T key to change watch type.
  • Press N key to change watch's name

Available types

  • int8, int16, int32, int64, ... for integer values
  • uint8, uint16, uint32, uint64, ... for unsigned integer values
  • float, double
  • ptr or pointer
  • char, str or string

[type] [size] will be converted to type arr[size];

For example, int32 5 will be converted to int32 arr[5];

Furthermore, char 3 4 5 will be converted to int8 arr[5][4][3];

Screenshots

Overview Overview Overview Overview Overview

watchdbg-ida's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.