返回介绍

5.10.1. 利用技巧

发布于 2024-02-07 20:47:54 字数 1198 浏览 0 评论 0 收藏 0

5.10.1. 利用技巧

5.10.1.1. P/Invoke

Platform Invoke (P/Invoke) 提供了C#访问DLL中数据结构、回调、函数的能力。基本的使用方式如官方 Platform Invoke 文档中所示。利用P/Invoke的能力,C#程序可以较为容易的调用标准的Windows API。

using System;
using System.Runtime.InteropServices;

public class Program
{
    // Import user32.dll (containing the function we need) and define
    // the method corresponding to the native function.
    [DllImport("user32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
    private static extern int MessageBox(IntPtr hWnd, string lpText, string lpCaption, uint uType);

    public static void Main(string[] args)
    {
        // Invoke the function as a regular managed method.
        MessageBox(IntPtr.Zero, "Command-line message box", "Attention!", 0);
    }
}

P/Invoke的缺点在于引用了的API调用会最后出现在可执行文件的IAT中,使得一些敏感的行为容易被防护软件所注意。同时一些敏感的API可能是被防护软件所监控的,通过这种方式进行的API调用也容易被防护软件拦截。

5.10.1.2. D/Invoke

在P/Invoke的基础上,有研究人员提出了基于 Delegates 机制的D/Invoke,通过更隐蔽的方式来调用所需的API。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文