上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: 原链接:http://www.verydemo.com/demo_c173_i86999.htmlShellExecute的功能是运行一个外部程序(或者是打开一个已注册的文件、打开一个目录、打印一个文件等等),并对外部程序有一定的控制。基本简介 有几个API函数都可以实现这些功能,但是在大多数情况... 阅读全文
posted @ 2015-01-24 01:24 Lthis 阅读(4967) 评论(0) 推荐(0) 编辑
摘要: #include 关键引用的类IShellLink:IShellLink主要方法:1、GetArguments:获得参数信息 2、GetDescription:获得描述信息3、GetHotkey:获得快捷键4、GetIconLocation:获得快捷方式图标 5、GetIDList:获得快捷方式... 阅读全文
posted @ 2015-01-23 11:57 Lthis 阅读(1370) 评论(0) 推荐(0) 编辑
摘要: 原帖链接http://outofmemory.cn/code-snippet/9194/achieve-search-recover-office-information-yiji-qingkong-recover-office#include #include #include //SHEmpt... 阅读全文
posted @ 2015-01-21 20:30 Lthis 阅读(515) 评论(0) 推荐(0) 编辑
摘要: //strPath为需要判断的路径if ( GetFileAttributes(strPath) & FILE_ATTRIBUTE_DIRECTORY ){ MessageBox("Is a Directory");}else{ MessageBox("Is not a Director... 阅读全文
posted @ 2015-01-20 23:53 Lthis 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 十六进制字符串转十六进制数字 x64/x86 http://www.cnblogs.com/khler/archive/2010/11/10/1873284.html 本文为khler原作,转载必须确保本文完整并完整保留原作者信息及本文原始链接E-mail: khler@163.comQQ: 233 阅读全文
posted @ 2015-01-07 16:09 Lthis 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 标题:【原创】利用NtProtectVirtualMemory结束进程作者:KiDebug时间:2011-07-13,09:37:08链接:http://bbs.pediy.com/showthread.php?t=137067 原理很简单,用PROCESS_VM_OPERATION打开目标进程(没... 阅读全文
posted @ 2015-01-07 11:18 Lthis 阅读(2976) 评论(0) 推荐(0) 编辑
摘要: 标 题: 【原创】枚举系统句柄作 者: nightxie 时 间: 2008-10-17,15:33:10 链 接: http://bbs.pediy.com/showthread.php?t=74824 之前我在这儿问了关于这个驱动的问题。感谢sudami的回复。。。问题解决了,这里把我的代码贴出... 阅读全文
posted @ 2015-01-07 09:58 Lthis 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 总结:1. FindWindow。比如 FindWindowA("OLLYDBG", NULL);2. EnumWindow函数调用后,系统枚举所有顶级窗口,为每个窗口调用一次回调函数。在回调函数中用 GetWindowText得到窗口标题,进行检测。3. GetForeGroundWindow返回... 阅读全文
posted @ 2015-01-07 09:31 Lthis 阅读(3117) 评论(0) 推荐(0) 编辑
摘要: 标 题: 【原创】利用SEH和INT3实现API HOOK作 者: weizehua时 间: 2011-03-27,23:50:38链 接: http://bbs.pediy.com/showthread.php?t=131457用SEH技术实现API Hook,网上已经有帖子了,可是那些帖子太老,... 阅读全文
posted @ 2015-01-07 09:09 Lthis 阅读(580) 评论(0) 推荐(0) 编辑
摘要: CListCtrl m_list;//1插入Columnm_list.SetExtendedStyle(LVS_EX_GRIDLINES | LVS_EX_FULLROWSELECT);m_list.InsertColumn(0, L"PID", LVCFMT_CENTER, 80);//2.插入I... 阅读全文
posted @ 2015-01-05 16:04 Lthis 阅读(291) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页