博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
windows、linux劫持技术
阅读量:5978 次
发布时间:2019-06-20

本文共 4488 字,大约阅读时间需要 14 分钟。

windows系统下面可以利用detours劫持

realse  模式劫持,调试的程序不可以

 

函数劫持可以实现的效果。

函数的劫持原理

我们如何实现-detours

 

detours是微软亚洲研究院出品的信息安全产品,主要用于劫持。

 

detours根据函数指针改变函数的行为,

拦截任何函数,即使操作系统函数。

1.安装detours

2.构建库文件-nmake编译

3.包含头文件还有库文件

#include <detours.h>

#pragma comment(lib, "detours.lib")

4.

定义旧函数指针指向原来的函数

static int (WINAPI *OLD_MessageBoxW)(HWND hWnd, LPCSTR lpText, LPCSTR lpaptioin, UINT uType) = MessageBoxW;

 

定义新的函数

int WINAPI  NEW_MessgeBox(HWND hWnd, LPCSTR lpText, LPCSTR lpCaptioin, UINT uType)

{

//重新定义函数的行为

//为空可以禁止函数使用

//加上if else 可以限制函数的调用

//加上对话框可以限制同一或者不同意

if (IDYES == MessageBoxW(NULL, lpCommandLine, L"拦截成功!", MB_YESNO) )

    return 1;

else

    return FALSE;

   

    return ret;

}

 

 

5.

 

开始拦截

void Hook()

{

DetourRestoreAfterWith();//恢复原来状态

DetourTransactionBegin();//拦截开始

DetourUpdateThread(GetCurrentThread());//刷新当前线程

//这里可以连续多次调用DetourAttach,表明HOOK多个函数

DetourAttach( (void **)&OLD_MessageBox, NEW_MessageBox );//实现函数拦截

DetourTransactionCommit();//拦截生效

}

 

取消拦截

void UnHook()

{

DetourTransactionBegin();//拦截开始

DetourUpdateThread(GetCurrentThread());//刷新当前线程

//这里可以连续多次调用DetourDetach,,表明撤销多个函数HOOK

DetourDetach( (void **)&OLD_MessageBox, NEW_MessageBox );//实现函数拦截

DetourTransactionCommit();//拦截生效

}

 

6.修改自己,直接挂接函数即可

修改外部程序

需要作为模块注射,需要导出声明

__declspec(dllexport)

劫持system函数

#include
#include
#include
#include
#include"detours.h"#pragma comment(lib, "detours.lib")//劫持自己static int (*poldsystem)( const char * _Command)=system;//存储函数指针地址int newsystem(const char * _Command){ //tasklist printf("%s", _Command); //禁止你干活 return 0;}int newsystemA(const char * _Command){ //tasklist 过滤 char *p = strstr(_Command, "tasklist"); if (p == NULL) { poldsystem(_Command); } else { printf("%s禁止执行", _Command);//找到 return 0; } return 0;}//开始拦截void Hook(){ DetourRestoreAfterWith();//恢复原来状态 DetourTransactionBegin();//拦截开始 DetourUpdateThread(GetCurrentThread());//刷新当前线程 //这里可以连续多次调用DetourAttach,表明HOOK多个函数 DetourAttach((void **)&poldsystem, newsystemA);//实现函数拦截 DetourTransactionCommit();//拦截生效}void main(){ system("calc"); Hook(); system("calc"); system("tasklist"); getchar();}

编写成dll文件,注入到其他的程序中,从而能够实现劫持其他应用程序,达到过滤的效果。如果交了保护费,就可以不去劫持你的程序。实现猥琐的技术。

#include
#include
#include
#include
#include"detours.h"#pragma comment(lib, "detours.lib")static int(*poldsystem)(const char * _Command) = system;//存储函数指针地址int newsystem(const char * _Command){ //tasklist printf("%s", _Command); //禁止你干活 return 0;}//开始拦截void Hook(){ DetourRestoreAfterWith();//恢复原来状态 DetourTransactionBegin();//拦截开始 DetourUpdateThread(GetCurrentThread());//刷新当前线程 //这里可以连续多次调用DetourAttach,表明HOOK多个函数 DetourAttach((void **)&poldsystem, newsystem);//实现函数拦截 DetourTransactionCommit();//拦截生效}//导出函数,可以加载的时候调用_declspec(dllexport) void go(){ MessageBoxA(0, "1", "2", 0); Hook();}

CreateProcessW函数是用来创建进程的。

#include
#include
#include
void main1(){ //system("calc"); //ShellExecuteA(0, "open", "calc", 0, 0, 1); STARTUPINFO si = { sizeof(si) }; //启动信息 PROCESS_INFORMATION pi;//保存了进程的信息 si.dwFlags = STARTF_USESHOWWINDOW; //表示显示窗口 si.wShowWindow = 1; //1表示显示创建的进程的窗口 wchar_t cmdline[] = L"c://program files//internet explorer//iexplore.exe"; CreateProcessW(NULL, cmdline, NULL, NULL, 0, CREATE_NEW_CONSOLE, NULL, NULL, &si, &pi);//创建进程 }
在Windows平台下可以使用挂钩(Hook)技术,将系统中的鼠标、键盘等事件拦截下来,以添加实现自己的功能。同样的,在Linux系统中也有类似的技术,都可以起到挂钩(Hook)拦截的作用。可以实现拦截的功能。拦截技术的实现是通过环境变量LD_PRELOAD设置优先被加载器加载的动态库(以下简称拦截动态库),这里应该设置LD_PRELOAD=“xxx.so”

例子:
/* 文件名:verifypasswd.c *//* 这是一段判断用户口令的程序,其中使用到了标准C函数strcmp*/ #include 
#include
int main(int argc, char **argv){ char passwd[] = "password"; if (argc < 2) { printf("usage: %s
\n", argv[0]); return; } if (!strcmp(passwd, argv[1])) { printf("Correct Password!\n"); return; } printf("Invalid Password!\n");}
编译程序:

$ gcc -o verifypasswd verifypasswd.c

测试一下程序:(得到正确结果)

$ ./verifypasswd asdf

Invalid Password!

在上面这段程序中,我们使用了strcmp函数来判断两个字符串是否相等。下面,我们使用一个动态函数库来重载strcmp函数:

#include 
int strcmp(const char *s1, const char *s2){ printf("hack function invoked. s1=<%s> s2=<%s>\n", s1, s2); /* 永远返回0,表示两个字符串相等 */ return 0;}

编译程序:

$ gcc -shared -o hack.so hack.c

设置LD_PRELOAD变量:(使我们重写过的strcmp函数的hack.so成为优先载入链接库)

$ export LD_PRELOAD="./hack.so"

再次运行程序:

$ ./verifypasswd  asdf

hack function invoked. s1=<password> s2=<asdf>

Correct Password!

你可能感兴趣的文章
MySQL基础
查看>>
Oracle伪列ROWID和ROWNUM
查看>>
网关冗余--王贝的学习笔记
查看>>
《统计学习方法》读书笔记(1)---学习的要素
查看>>
Springboot2.1.3 + redis 实现 cache序列化乱码问题
查看>>
struct 类型指针技巧
查看>>
POJ 1321 棋盘问题 题解
查看>>
js实现购物车数量的增加与减少,js实现购物车数量的自增与自减
查看>>
gitlab部署步骤+汉化
查看>>
linux清理缓存的命令
查看>>
jquery文本折叠
查看>>
springmvc请求参数获取(自动绑定)的几种方法
查看>>
对导航条的改造
查看>>
python 异常处理
查看>>
CodeForces-1151F-Sonya and Informatics
查看>>
java数据结构读书笔记--引论
查看>>
COM 学习小记录
查看>>
AWS CSAA -- 04 AWS Object Storage and CDN - S3 Glacier and CloudFront(三)
查看>>
-bash: jps: command not found
查看>>
区块链
查看>>