如何使用它在地址 0xaaaa 处用 909090 覆盖操作码 8b5508?

发布于 2024-10-31 11:11:47 字数 274 浏览 1 评论 0原文

我做了几个小时的研究,这使我能够覆盖马赫:http://guiheneuf。 org/mach%20inject%20for%20intel.html

我正在尝试使用 nops (909090) 重写目标中给定地址处的操作码 8b5508。我认为 mach override 似乎是解决方案,但我不知道如何使用它......有人有任何建议吗?先感谢您!

I've been doing hours of research which brought me to mach override: http://guiheneuf.org/mach%20inject%20for%20intel.html

I'm trying to rewrite the opcode 8b5508 at the given address in my target with nops (909090). I think mach override seems to be the solution, but I have no idea how to use it... has anybody got any advice? Thank you in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等待我真够勒 2024-11-07 11:11:47

如果没有任何其他背景,这似乎是一个教科书问题。如果您使用 C,您可以这样做:

char *myptr = my_given_addr;
myptr[0] = 0x90;
myptr[1] = 0x90;
myptr[2] = 0x90;

可能有一个更优雅的解决方案,但这得到了一般要点。我是新来的...有家庭作业标签吗?

Without any other context, this seems like a textbook problem. If you're using C, you could do it this way:

char *myptr = my_given_addr;
myptr[0] = 0x90;
myptr[1] = 0x90;
myptr[2] = 0x90;

There's probably a more elegant solution but this gets the general gist. I'm new to SO... is there a homework tag?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文