attachanyway.txt
上传用户:haohao_zhu
上传日期:2014-08-15
资源大小:2446k
文件大小:1k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. AttachAnyway v0.1
  2. (c)2005 Joe Stewart <joe@joestewart.org>
  3. AttachAnyway is a PoC OllyDbg plugin designed to show how to remove a 
  4. process' hook on NtContinue by the anti-debugger-attach method devised by 
  5. Piotr Bania here:
  6. http://pb.specialised.info/all/anti-dattach.asm
  7. This is not intended to be a universal plugin for all anti-attach methods, 
  8. just one example of how you can do it. It works by enumerating all 
  9. processes, searching their virtual memory space for a JMP hook on the 
  10. NtContinue method, then replacing the jump with the original bytes from a 
  11. non-hooked process, then calling the OllyDbg Attachtoactiveprocess
  12. API.
  13. attach-test.exe is an assembled version of Piotr's anti-dattach.asm you can 
  14. use to test the plugin with.