Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
Dirty-Vanity — 一种针对新型注入技术的POC,利用Windows fork API来规避EDR。https://www.blackhat.com/eu-22/briefings/schedule/index.html#dirty-vanity-a-new-approach-to-code-injection--edr-bypass-28417 | Kitploit
工具/GitHubGitHub/deepinstinct/dirty-vanity
漏洞利用Shellcode后渗透利用红队Shellcode 生成Payload 开发对抗性攻击
GitHubdeepinstinct/dirty-vanity

Dirty-Vanity

一种针对新型注入技术的POC,利用Windows fork API来规避EDR。https://www.blackhat.com/eu-22/briefings/schedule/index.html#dirty-vanity-a-new-approach-to-code-injection--edr-bypass-28417

查看仓库
6778863年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

Dirty Vanity

一种滥用 Windows fork API 以规避 EDR 的新注入技术的 PoC。

用法

DirtyVanity.exe [TARGET_PID_TO_REFLECT]

运行时步骤

  • 分配并将 shellcode 写入 [TARGET_PID_TO_REFLECT]
  • 将 [TARGET_PID_TO_REFLECT] fork 到一个新进程
  • 将 fork 出的进程的起始地址设置为克隆的 shellcode

Shellcode

反射的 shellcode 使用 ntdll API。它由随附的生成项目 shellcode_template 生成, 感谢 https://github.com/rainerzufalldererste/windows_x64_shellcode_template

Shellcode 定制

为了方便定制 shellcode:

  • 根据 https://github.com/rainerzufalldererste/windows_x64_shellcode_template 中的说明,编辑 shellcode_template 项目中的 shellcode_template 函数
  • 编译它
  • 使用你喜欢的 PE 解析工具(例如 IDA)裁剪 shellcode_template 函数的字节
  • 这些字节是位置无关的 shellcode。将它们放入 DirtyVanity.cpp
  • 执行 DirtyVanity,观察它们被反射
下载工具