• Stars
    star
    161
  • Rank 227,882 (Top 5 %)
  • Language
    C
  • Created over 7 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

x64dbg plugin to set breakpoints automatically to Win32/64 APIs

Api Break for x64dbg

Api Break is a x64dbg plugin which is aimed to set breakpoints Win32/64 API calls easly.

ab1

ab2

####Features

  • API function entry breakpoint (AEB)
  • Breakpoint at API callers (BAC)
  • Auto-populating modules and their API functions used by the process.

API Function Entry Breakpoint (AEB)

It can be useful when the code does obfuscated or indirect api calls or something similar conditions. This mode is automatically (naturally) handles all API calls for the entire module. Also, this mode gives an option to jump automatically to the API caller when the API entry breakpoint hit. It exposes the original caller using single step callstack backtracing.

Breakpoint at API callers (BAC)

In technically, this mode is much more flexible and customizable. It does scan dynamically for API calls in specified module or address range. For now, it scans only process's code range. But other features are planned for future development.

If you have any idea, let me know what ideas you have about it.

#####In-Development features

  • Dynamically loaded API detection which is made by using GetProcAddress (About 45% implemented)

#####Planning features

  • User specified code range scan for BAC
  • User specified module scan for BAC
  • User option to listing all linked modules and APIs of process regardless of IAT.