从 CreateTool32Help api 隐藏线程
有人可以从 CreateTool32Help api 隐藏他或她的线程吗?我想知道这一点,因为我正在为我制作的一个小游戏构建一个反作弊程序。我不想进入内核模式,因此阻止入侵者将线程注入我的进程的唯一方法是将我创建的线程与快照中找到的线程进行比较。
有办法规避这一措施吗?为了以防万一,我已经挂钩了 NtSetInformationThread。
Is is possible that someone can hide his or her thread from the CreateTool32Help api? I want to know this because I'm building an anti-cheat program for a little game I made. I don't want to go into kernel mode so the only way I can stop intruders injecting threads into my process is by comparing the threads I created with those found in the snapshot.
Could there be ways to circumvent this measure? I've hooked NtSetInformationThread just in case.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果有人在您的进程内运行代码,那么您就已经失败了。一旦它们进入您的进程,它们就可以修补您尝试检测它们的代码!
If somebody is running code inside your process, then you've already lost. Once they're in your process, they can patch your code that tries to detect them!