资源简介
C# 最简单使用 EasyHook 源码,极简而全,Hook入门者,让大家都会Hook。支持注入托管非托管程序,32位和64位程序,windows 10 x64 调试通过。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using EasyHook;
using System.Threading;
using System.Diagnostics;
using System.Windows.Forms;
namespace ClassLibrary1
{
[Serializable]
public class HookParameter
{
public string Msg { get; set; }
public int HostProcessId { get; set; }
}
public class Main : EasyHook.IEntryPoint
{
public LocalHook MessageBoxWHook = null;
public LocalHook MessageBoxAHook = null;
public Main(
RemoteHooking.IContext context
String channelName
HookParameter parameter
)
{
MessageBox.Show(parameter.Msg “Hooked“);
}
public void Run(
RemoteHooking.IContext context
String channelName
HookParameter parameter
)
{
try
{
MessageBoxWHook = LocalHook.Create(
LocalHook.GetProcAddress(“user32.dll“ “MessageBoxW“)
new DMessageBoxW(MessageBoxW_Hooked)
this);
MessageBoxWHook.ThreadACL.SetExclusiveACL(new Int32[1]);
MessageBoxAHook = LocalHook.Create(
LocalHook.GetProcAddress(“user32.dll“ “MessageBoxA“)
new DMessageBoxW(MessageBoxA_Hooked)
this);
MessageBoxAHook.ThreadACL.SetExclusiveACL(new Int32[1]);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return;
}
try
{
while (true)
{
Thread.Sleep(10);
}
}
catch
{
}
}
#region MessageBoxW
[DllImport(“user32.dll“ EntryPoint = “MessageBoxW“ CharSet = CharSet.Unicode)]
public static extern IntPtr MessageBoxW(int hWnd string text string caption uint type);
[UnmanagedFunctionPointer(CallingConvention.StdCall CharSet = CharSet.Unicode)]
delegate IntPtr DMessageBoxW(int hWnd string text string caption uint type);
static IntPtr MessageBoxW_Hooked(int hWnd string text string caption uint type)
{
return MessageBoxW(hWnd “Hooked - “ + text “Hooked - “ + caption type);
}
#endregion
#region MessageBoxA
[DllImport(“user32.dll“ EntryPoint = “MessageBoxA“ CharSet = CharSet.Ansi)]
public static extern IntPtr MessageBoxA(int hWnd string text string caption uint type);
[UnmanagedFunctionPointer(CallingConvention.StdCall CharSet = CharSet.Ansi)]
delegate IntPtr DMessageBoxA(int hWnd string text string caption uint type);
static IntP
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6656 2017-09-27 17:26 ClassLibrary1\bin\Debug\ClassLibrary1.dll
文件 15872 2017-09-27 17:26 ClassLibrary1\bin\Debug\ClassLibrary1.pdb
文件 2976 2017-09-27 16:58 ClassLibrary1\ClassLibrary1.csproj
文件 3218 2017-09-27 17:26 ClassLibrary1\Main.cs
文件 999 2017-09-27 16:33 ClassLibrary1\obj\Debug\ClassLibrary1.csproj.FileListAbsolute.txt
文件 6680 2017-09-27 16:32 ClassLibrary1\obj\Debug\ClassLibrary1.csprojResolveAssemblyReference.cache
文件 6656 2017-09-27 17:26 ClassLibrary1\obj\Debug\ClassLibrary1.dll
文件 15872 2017-09-27 17:26 ClassLibrary1\obj\Debug\ClassLibrary1.pdb
文件 6105 2017-09-27 17:26 ClassLibrary1\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 1358 2017-09-27 15:47 ClassLibrary1\Properties\AssemblyInfo.cs
文件 49152 2017-09-27 15:50 ClassLibrary1\RefLib\EasyHook.dll
文件 596 2017-09-27 16:10 ClassLibrary1\SN.snk
文件 6656 2017-09-27 17:26 WindowsFormsApplication8\bin\Debug\ClassLibrary1.dll
文件 15872 2017-09-27 17:26 WindowsFormsApplication8\bin\Debug\ClassLibrary1.pdb
文件 49152 2017-09-27 16:22 WindowsFormsApplication8\bin\Debug\EasyHook.dll
文件 263680 2017-09-27 16:21 WindowsFormsApplication8\bin\Debug\EasyHook32.dll
文件 299008 2017-09-27 16:21 WindowsFormsApplication8\bin\Debug\EasyHook64.dll
文件 10240 2017-09-27 17:26 WindowsFormsApplication8\bin\Debug\WindowsFormsApplication8.exe
文件 34304 2017-09-27 17:26 WindowsFormsApplication8\bin\Debug\WindowsFormsApplication8.pdb
文件 11592 2017-09-28 13:49 WindowsFormsApplication8\bin\Debug\WindowsFormsApplication8.vshost.exe
文件 490 2015-07-10 19:01 WindowsFormsApplication8\bin\Debug\WindowsFormsApplication8.vshost.exe.manifest
文件 49152 2017-09-27 16:22 WindowsFormsApplication8\EasyHook.dll
文件 263680 2017-09-27 16:21 WindowsFormsApplication8\EasyHook32.dll
文件 299008 2017-09-27 16:21 WindowsFormsApplication8\EasyHook64.dll
文件 4189 2017-09-27 17:18 WindowsFormsApplication8\Form1.cs
文件 3112 2017-09-27 17:11 WindowsFormsApplication8\Form1.Designer.cs
文件 5817 2017-09-27 17:11 WindowsFormsApplication8\Form1.resx
文件 5420 2017-09-27 16:18 WindowsFormsApplication8\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 7128 2017-09-27 17:26 WindowsFormsApplication8\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 3518 2017-09-28 13:49 WindowsFormsApplication8\obj\x86\Debug\WindowsFormsApplication8.csproj.FileListAbsolute.txt
............此处省略40个文件信息
- 上一篇:c#做的一个计算器
- 下一篇:局域网聊天软件C#源码
相关资源
- 局域网聊天软件C#源码
- c#做的一个计算器
- C#数字信号处理
- C#记事本实现了向上,向下查找,替换
- C#连接mysql数据库与简单操作
-
flash控件AxShockwaveFlashob
jects - c#编写的TFTP服务器源代码
- C#编写的决策树算法
- Normal (aka Gaussian) distribution 正态分
- opengl绘图窗口上使用鼠标缩放旋转图
- 数据结构试题C#版,附答案
- C#模拟实现正态分布,计算及绘画源码
- C#——导出数据到CSV
- 漂亮的C#自绘菜单、ToolBar和状态栏
- 三点绘制圆弧测试程序
- 二维坐标点按行排序C#VS2008工程源代码
- C# socket通信允许发送消息,图片,与
- C# 绘制多边形,支持撤销 删除 编辑
- c# 导出oracle数据库下所有表结构
- c# winform wia 调用扫描仪
- C#软件注册试用期限代码.zip
- C# 获取图片某像素点RGB565值
- 火币网REST API C#版
- 五子棋对战用C#编写的
- C#串口调试助手_VS2010()
- C# 软件注册期限验证代码
- C# 敏感字过滤 内含敏感字字典两个字
- Skyline开发入门C#
- C# 流数据旋转 90度 图像旋转 90度
- c# rgb565 转 rgb24
评论
共有 条评论