博客日历
2025年01月 | ||||||
一 | 二 | 三 | 四 | 五 | 六 | 七 |
30 | 31 | 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 | 1 | 2 |
存档
2024年03月 04月 05月 2021年
01月 02月 11月 12月 2020年
02月 03月 04月 05月 06月 07月
09月 2018年
09月 2017年
01月 02月 07月 2016年
01月 04月 07月 08月 11月 12月
2015年
01月 02月 03月 05月 09月 10月
11月 2014年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2013年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2012年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2011年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2010年
01月 02月 03月 04月 05月 06月
07月 08月 09月 10月 11月 12月
2009年
03月 04月 05月 06月 07月 08月
09月 10月 11月 12月
API HOOK库Detours的基本使用方法
HookApi.h
#pragma once #include <detours.h> #pragma comment(lib, "detours.lib") class CHookApi { public: CHookApi(); ~CHookApi(); public: void Hook(); void UnHook(); };
HookApi.cpp
#include "stdafx.h" #include "HookApi.h" //--------------------------------------------- CStringA ToHex(const char* buf, int len) { CStringA csText,csTmp; for (int i = 0; i < len;i++) { csTmp.Format("%02X ", buf[i] & 0xFF); csText += csTmp; } return csText; } #include <Winsock2.h> #pragma comment(lib, "Ws2_32.lib") int (WINAPI *pSend)(SOCKET s, const char* buf, int len, int flags) = send; int (WINAPI *pRecv)(SOCKET s, char* buf, int len, int flags) = recv; int WINAPI MySend(SOCKET s, const char* buf, int len, int flags) { FILE* pSendLogFile = NULL; fopen_s(&pSendLogFile, "C:\\SendLog.txt", "a+"); fprintf(pSendLogFile, "%d:%s\n", s,(LPCSTR)ToHex(buf, len)); fclose(pSendLogFile); return pSend(s, buf, len, flags); } int WINAPI MyRecv(SOCKET s, char* buf, int len, int flags) { FILE* pRecvLogFile = NULL; fopen_s(&pRecvLogFile, "C:\\RecvLog.txt", "a+"); fprintf(pRecvLogFile, "%d:%s\n", s,(LPCSTR)ToHex(buf, len)); fclose(pRecvLogFile); return pRecv(s, buf, len, flags); } //--------------------------------------------- CHookApi::CHookApi() { } CHookApi::~CHookApi() { } void CHookApi::Hook() { DetourTransactionBegin(); DetourUpdateThread(GetCurrentThread()); DetourAttach(&(PVOID&)pSend, MySend); if (DetourTransactionCommit() == NO_ERROR) { OutputDebugString(L"send() detoured successfully"); } DetourTransactionBegin(); DetourUpdateThread(GetCurrentThread()); DetourAttach(&(PVOID&)pRecv, MyRecv); if (DetourTransactionCommit() == NO_ERROR) { OutputDebugString(L"recv() detoured successfully"); } } void CHookApi::UnHook() { DetourTransactionBegin(); DetourUpdateThread(GetCurrentThread()); DetourDetach(&(PVOID&)pSend, MySend); DetourTransactionCommit(); DetourTransactionBegin(); DetourUpdateThread(GetCurrentThread()); DetourDetach(&(PVOID&)pRecv, MyRecv); DetourTransactionCommit(); }
使用方法:
// 在 DllMain 中 #include "HookApi.h" CHookApi hook; // DLL_PROCESS_ATTACH hook.Hook(); // DLL_PROCESS_DETACH hook.UnHook();
将这些代码所在的DLL注入到指定进程即可。
上一篇: 通过远程线程注入DLL到指定进程
下一篇: 在HP-UX上编译ruby1.9.3及其组件
分类:Win32/C++ 查看次数:6729 发布时间:2014/5/6 18:22:27