zoukankan      html  css  js  c++  java
  • dll注入实现MFC程序劫持(4)

    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();
    }
      




  • 相关阅读:
    JS 操作属性
    JS 操作对象 事件 样式
    JS 一个页面关闭多个页面
    JS DOM
    JS 语言基础
    JS 基础知识
    CSS样式表
    HTML 常用标记
    HTML iframe框架
    28-2 logging 日志模块
  • 原文地址:https://www.cnblogs.com/ZhangJinkun/p/4531493.html
Copyright © 2011-2022 走看看