Git Product home page Git Product logo

Comments (5)

caikelun avatar caikelun commented on August 17, 2024

你需要hook的是自己so库中对execve的调用吧?
这样?

xhook_register(".*/libmy.so$", "execve", (void *)new_execve, (void**)&old_execve);

from xhook.

cxxsheng avatar cxxsheng commented on August 17, 2024

你需要hook的是自己so库中对execve的调用吧?
这样?

xhook_register(".*/libmy.so$", "execve", (void *)new_execve, (void**)&old_execve);

不是 我是需要hook libc中的execve的调用,发现貌似无法hook成果,没法拦截,我使用了 inline hook就成功了

from xhook.

caikelun avatar caikelun commented on August 17, 2024

你的情况xhook确实hook不到的。因为execve的实现就在libc.so中,所以它内部调用execve肯定被编译优化了,不走PLT/GOT了。

from xhook.

cxxsheng avatar cxxsheng commented on August 17, 2024

你的情况xhook确实hook不到的。因为execve的实现就在libc.so中,所以它内部调用execve肯定被编译优化了,不走PLT/GOT了。

但是我能够成功hook mmap或者open等等一些libc的函数,单单exec族的hook不到,这些函数是不是有什么特殊之处导致的呢?比如exec族函数会重新fork出进程来执行。

from xhook.

caikelun avatar caikelun commented on August 17, 2024

我觉得你可以先readelf确认下exec是否被加入到了so的PLT中,再反汇编看下对exec的调用是否走了PLT。

另外,你是怎么判断没有hook到exec的?可以在比如my_exec中先创建一个固定名称的空文件,再调用原exec文件,如果文件被创建了,那就说明hook到了。printf不一定靠谱。

from xhook.

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.