码迷,mamicode.com
首页 > 编程语言 > 详细

dll注入实现MFC程序劫持(4)

时间:2015-05-26 21:12:18      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

dll注入实现MFC程序劫持(4)
技术分享


双击会运行system("pause")打开计算器

现在禁止打开

#include<stdio.h>
#include<stdlib.h>
#include<windows.h>
#include<string.h>
#include"detours.h"
#pragma comment (lib ,"detours.lib" )

static int (*oldsystem)(const char * _Command) = system;

int  newsystem(const char * _Command ){
        return 0;
}

void Hook()
{
       DetourRestoreAfterWith();
       DetourTransactionBegin();
       DetourUpdateThread(GetCurrentThread());
       DetourAttach(( void **)&oldsystem, newsystem);
       DetourTransactionCommit();
}

_declspec(dllexport ) void go(){
       Hook();
}
  




dll注入实现MFC程序劫持(4)

标签:

原文地址:http://www.cnblogs.com/ZhangJinkun/p/4531493.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!