摘要: PBYTE pFile2;//设置为全局,方便其他cpp访问 void CDLG_Process::AnalysisPFile() { //获取行列内容 DWORD dwPid; CString Pid = m_ctrlList_Process.GetItemText(row, 0); dwPid = _ttoi(Pid.GetBuffer());//_ttoi ... 阅读全文
posted @ 2016-04-08 20:19 天还是那么蓝 阅读(144) 评论(0) 推荐(0) 编辑
摘要: // Injection64bit.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include BOOL InjectDll(TCHAR szPath[MAX_PATH], DWORD dwPid); int _tmain(int argc, _TCHAR* argv[]) { if (argc < 3) exit(... 阅读全文
posted @ 2016-04-08 20:15 天还是那么蓝 阅读(268) 评论(0) 推荐(0) 编辑
摘要: /************************************************************ MD5校验和计算小程序(C) ************************************************************/ #ifndef __MD5_INCLUDED__ #define __MD5_INCLUDED__ //MD5摘要... 阅读全文
posted @ 2016-04-08 20:12 天还是那么蓝 阅读(210) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include #include #include "消息钩子dll.h" #define KEYDOWN(vk_code) ((GetAsyncKeyState(vk_code)&0x8000)?1:0) BOOL g_bHide = TRUE; HHOOK g_Hook = 0; LRESULT CALLBACK KeyboardProc... 阅读全文
posted @ 2016-04-08 19:33 天还是那么蓝 阅读(234) 评论(0) 推荐(0) 编辑