Git Product home page Git Product logo

x64dbg_cpp_template's Introduction

x64dbg_cpp_template

Simple, easy to use template plugin for x64dbg.

Why?

All you have to do with this template, to start implementing your x64dbg plugin logic: rename folder.

Prerequisites

CMake have to be installed on your system. You can download it here: https://cmake.org/download/

Installation

Clone this repo

git clone https://github.com/lllShamanlll/x64dbg_cpp_template.git

Rename directory to the name what you want

mv x64dbg_cpp_template your_plugin_name

Move to build directory

cd your_plugin_name/build

Run CMake(for instance we'll generate x64 solution for VS2015)

cmake -G "Visual Studio 14 2015 Win64" ..

Usage

Just open your_plugin_name/src/plugin.cpp & modify template functions body

PLUGIN_COMMAND(templateCommand) {
    PLUGIN_MESSAGE("templateCommand runs successfully.\n");
    return true;
}

PLUGIN_EXPRESSION_FUNCTION(templateFunction, 0, nullptr) {
    PLUGIN_MESSAGE("templateFunction runs successfully.\n");
    return true;
}

Or add new one

PLUGIN_COMMAND(MyFancyCommand) {
    PLUGIN_MESSAGE("MyFancyCommand runs successfully.\n");
    return true;
}

You've no need to manage commands by hand, it goes automatically. Just implement your stuff & leave boring stuff to machines.

x64dbg_cpp_template's People

Contributors

lllshamanlll avatar

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.