小说网 找小说 无限小说 烟雨红尘 幻想小说 酷文学 深夜书屋
上一页 1 ··· 91 92 93 94 95 96 97 98 99 ··· 102 下一页

2012年8月2日

VC++另类实现进程插入

摘要: // WaiGuaTestDlg.cpp : implementation file//#include "stdafx.h"#include "WaiGuaTest.h"#include "WaiGuaTestDlg.h"#include "Tlhelp32.h"#ifdef _DEBUG#de... 阅读全文

posted @ 2012-08-02 11:47 牛栏山1 阅读(108) 评论(0) 推荐(0) 编辑

2012年7月26日

VC++实现浏览器自动填表

摘要: #include "stdafx.h" #include "EnumFormVal.h" #include CComModule _Module; // 由于要使用 CComDispatchDriver ATL的智能指针, // 所以声明它是必须的 #include... 阅读全文

posted @ 2012-07-26 17:43 牛栏山1 阅读(177) 评论(0) 推荐(0) 编辑

2012年7月16日

Windows8内核模式下开发NDIS应用-NDIS Filter讲解

摘要: 在Win8系统下开发驱动程序,需要数字证书,还需要驱动签名认证。不能像XP下面那样疯狂滴耍流氓了。 由于Win8系统的内核做了大幅度的修改,它和XP系统的内核起了很大的变化,最显著的就是刚才说的:需要签名和证书。 还有就是:不能随意的HOOK SSDT了。在开发NDIS驱动程序的时候,WDK开... 阅读全文

posted @ 2012-07-16 16:23 牛栏山1 阅读(120) 评论(0) 推荐(0) 编辑

VC++实现无进程无dll线程注射技术

摘要: 请见代码分析,实现线程注射#include "stdafx.h"#include "windows.h"#include "stdio.h"#include "Psapi.h"#include "Tlhelp32.h"//获得加载的DLL模块的信息,主要包括模块基地址和模块大小BOOL GetTh... 阅读全文

posted @ 2012-07-16 15:52 牛栏山1 阅读(98) 评论(0) 推荐(0) 编辑

VC++实现U盘开机锁

摘要: 请见代码分析#include #include #include #include #include #include #define MAX_DEVICE 256wchar_t USBSerial[5][100] = {TEXT("")};int gTag = 0;DEFINE_GUID(Usb... 阅读全文

posted @ 2012-07-16 15:50 牛栏山1 阅读(112) 评论(0) 推荐(0) 编辑

基于Windows8与Visual Studio2012实现杀毒通用模块

摘要: 创建第一个Windows8应用程序,Visual Studio 11效果如下设计下列控件针对程序进行命名按钮插入下列代码实现杀毒,实现卸载驱动,删除文件,删除注册表,请见代码注释WCHAR path[100]; // 需要删除的系统驱动及文件 WCHAR DeviceName[2][50] =... 阅读全文

posted @ 2012-07-16 15:34 牛栏山1 阅读(133) 评论(0) 推荐(0) 编辑

用Visual studio2012在Windows8上开发内核驱动监视进程创建

摘要: 在Windows NT中,80386保护模式的“保护”比Windows 95中更坚固,这个“镀金的笼子”更加结实,更加难以打破。在Windows 95中,至少应用程序I/O操作是不受限制的,而在Windows NT中,我们的应用程序连这点权限都被剥夺了。在NT中几乎不太可能进入真正的ring0层。... 阅读全文

posted @ 2012-07-16 15:25 牛栏山1 阅读(146) 评论(0) 推荐(0) 编辑

用Visual studio2012在Windows8上开发内核驱动监视线程创建

摘要: 在Windows NT中,80386保护模式的“保护”比Windows 95中更坚固,这个“镀金的笼子”更加结实,更加难以打破。在Windows 95中,至少应用程序I/O操作是不受限制的,而在Windows NT中,我们的应用程序连这点权限都被剥夺了。在NT中几乎不太可能进入真正的ring0层。... 阅读全文

posted @ 2012-07-16 15:22 牛栏山1 阅读(125) 评论(0) 推荐(0) 编辑

最短代码实现windows8下的下载器-下载安装执行一体化

摘要: 请见代码#include "stdafx.h"#include "windows.h"#include "UrlMon.h"#pragma comment(lib, "urlmon.lib")bool FileIsExist(LPCTSTR szFileFullPathName){ WIN32_F... 阅读全文

posted @ 2012-07-16 11:54 牛栏山1 阅读(120) 评论(0) 推荐(0) 编辑

实现诺基亚 lumia Windows phone 的手机通话记录截取

摘要: 废话少说,看看代码using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;using Microsoft.WindowsMobile.PocketOut... 阅读全文

posted @ 2012-07-16 11:52 牛栏山1 阅读(126) 评论(0) 推荐(0) 编辑

上一页 1 ··· 91 92 93 94 95 96 97 98 99 ··· 102 下一页

导航