windowsAPI
「已注销」
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PeekMessage Windows API函数
转自百度百科 BOOL PeekMessage( LPMSG IpMsg,//接收消息信息的MSG结构指针。 HWND hWnd,//其消息被检查的窗口句柄。 UINT wMSGfilterMin,//指定被检查的消息范围里的第一个消息。 UINT wMsgFilterMax,//指定被检查的消息范围里的最后一个消息。 UINT wRemoveMsg// ); 在user32.dll中 项目中转载 2016-08-03 20:20:20 · 724 阅读 · 0 评论 -
API Hook 自身 MessageBoxW
#include "stdafx.h" //原函数类型定义 typedef int (WINAPI* MsgBoxW)(HWND hWnd, LPCWSTR lpText, LPCWSTR lpCaption, UINT uType); MsgBoxW OldMsgBoxW = NULL;//指向原函数的指针 FARPROC pfOldMsgBoxW; //指向函数的远指针 BYTE OldCod转载 2016-09-20 15:43:26 · 792 阅读 · 0 评论 -
远程注入小记
原作者连接提权方法//注入程序 #include "stdafx.h" #include "Remote injection.h" #include "tlhelp32.h" using namespace std; extern int ListProcess(); extern int EnableDebugPriv(const WCHAR *);int _tmain(int argc, TCH转载 2016-09-26 19:35:12 · 1076 阅读 · 0 评论 -
DX后台截图
这个技术点真是让我煞费苦心终于有所突破没写完MarkMyDll.cpp // MyDll.cpp : 定义 DLL 的初始化例程。 //#include "stdafx.h" #include "MyDll.h" #include "D3dx9tex.h" HRESULT MyD3DXSaveSurfaceToFile( _In_ LPCTSTR pDe原创 2016-09-27 16:35:26 · 8255 阅读 · 5 评论
分享