Giter Site home page Giter Site logo

Possible bug on x64? about minhook HOT 3 CLOSED

tsudakageyu avatar tsudakageyu commented on September 18, 2024
Possible bug on x64?

from minhook.

Comments (3)

m417z avatar m417z commented on September 18, 2024

The trampoline which is patched over the function is always JMP_REL, so it looks correct.

from minhook.

PsychloDx avatar PsychloDx commented on September 18, 2024

That is not true.

When x64 the patch happens using JMP_ABS:

JMP_ABS jmp = { 0xFF, 0x25, 0x00000000, // FF25 00000000: JMP [RIP+6] 0x0000000000000000ULL // Absolute destination address };

#if defined(_M_X64) || defined(__x86_64__) jmp.address = pOldInst; #else

typedef struct _JMP_ABS { UINT8 opcode0; // FF25 00000000: JMP [+6] UINT8 opcode1; UINT32 dummy; UINT64 address; // Absolute destination address } JMP_ABS, *PJMP_ABS;

In x64 the patch size is actually 14. And JMP_REL will always have size of 5.

from minhook.

m417z avatar m417z commented on September 18, 2024

You mix up two jumps: the jump which is patched over the hooked function, and the jump which is followed after the first saved commands of the function (which is written in a separately allocated buffer).

from minhook.

Related Issues (20)

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.