Giter VIP home page Giter VIP logo

minhook's People

Contributors

khchen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

minhook's Issues

Can't get real production example to work

I'm trying to hook into a address of a function in a process with the example listed below. Tool.exe crashes with a segfault. I never used minhook so I'm not sure what's wrong. Also how could I still call the original function in hkFooBar?

Tool.exe

import os
from winim import LoadLibraryA

proc foobar(a, b: int): int = a + b

proc main = 
  echo "Address of foobar is ", cast[ByteAddress](foobar) # Address: 4265044
  LoadLibraryA("hookit.dll")

  while true:
    os.sleep(5000)
    echo "Result of foobar: ", foobar(10, 5)

when isMainModule: 
  main()

hookit.dll

import minhook

var toHook = cast[pointer](4265044)

proc hkFooBar(a, b: int): int = a * b

proc mainThread =
  {.gcsafe.}:
    echo "Library load"
    assert createHook(toHook, hkFooBar, nil) == mhOk
    assert enableHook(toHook) == mhOk
    echo "Hook enabled"

when isMainModule:
  var t: Thread[void]
  t.createThread(mainThread)```

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.