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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
WMIcmd — Microsoft Windows용 WMI만 사용하는 명령 셸 래퍼 | Kitploit
도구/GitHubGitHub/nccgroup/wmicmd
ReconnaissanceLateral MovementInformation GatheringPost-ExploitationPenetration TestingRemote Access Tool
GitHubnccgroup/wmicmd

WMIcmd

Microsoft Windows용 WMI만 사용하는 명령 셸 래퍼

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

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

문제

저영향 조사 및 기타 유사한 활동을 수행할 때 디스크에 기록되거나 눈에 띄는 것을 최소화하고 싶을 수 있습니다.

이 도구를 사용하면 WMI를 통해 명령을 실행하고 이 채널로는 달리 얻을 수 없는 정보를 확보할 수 있습니다.

목적

WMI만 사용하여 다음 작업을 수행하는 소형 유틸리티입니다:

  • 셸 명령 실행
  • 이러한 명령의 표준 출력을 캡처하여 레지스트리에 기록
  • 레지스트리에서 읽은 후 삭제
  • 로컬 표준 출력으로 인쇄

설계

이 도구는 다음으로 구성되어 있습니다:

  • NCC Group 내부 핵심 라이브러리(WMICore)의 매우 작은 하위 집합
  • 명령 실행(WMIcmd)

사용법

root@kitploit:~
C:\Data\NCC\!Code\Git.Public\WMIcmd\WMIcmd\bin\Debug>WMIcmd.exe --help
NCC Group WMIcmd 1.0.0.0
Released under AGPL

  -h, --host            Host (IP address or hostname - default: localhost)

  -u, --username        Username to authenticate with

  -p, --password        Password to authenticate with

  -d, --domain          Domain to authenticate with

  -v, --Verbose         (Default: False) Prints all messages to standard
                        output.

  -c, --Command         (Default: ) Command to run e.g. "nestat-ano"

  -s, --CommandSleep    (Default: 10000) Command sleep in milliseconds -
                        increase if getting truncated output

  --help                Display this help screen.

예제 - 도메인에 가입되지 않은 컴퓨터

참고: 관리자 자격 증명을 사용하세요

root@kitploit:~
WMIcmd.exe -h 192.168.1.165 -d hostname -u localadmin -p theirpassword -c "netstat -an"

예제 - 도메인에 가입된 컴퓨터

참고: 관리자 자격 증명을 사용하세요

root@kitploit:~
WMIcmd.exe -h 192.168.1.165 -d domain -u domainadmin -p theirpassword -c "netstat -an"

예상 출력 예제

참고: 관리자 자격 증명을 사용하세요

root@kitploit:~
C:\Data\NCC\!Code\Git.Public\WMIcmd\WMIcmd\bin\Debug>WMIcmd.exe -d win10host -h win10host -u superuser -p password -c "netstat -an"
[!] Connecting with superuser
[i] Connecting to win10host
[i] Connected
[i] Command: netstat -an
[i] Running command...
[i] Getting stdout from registry from SOFTWARE\
[i] Full command output received
Active Connections
Proto  Local Address          Foreign Address        State
TCP    0.0.0.0:135            0.0.0.0:0              LISTENING
TCP    0.0.0.0:445            0.0.0.0:0              LISTENING
TCP    0.0.0.0:5357           0.0.0.0:0              LISTENING
TCP    0.0.0.0:5985           0.0.0.0:0              LISTENING
TCP    0.0.0.0:7680           0.0.0.0:0              LISTENING
TCP    0.0.0.0:18800          0.0.0.0:0              LISTENING
TCP    0.0.0.0:47001          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49152          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49153          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49154          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49664          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49665          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49666          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49667          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49668          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49669          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49671          0.0.0.0:0              LISTENING
TCP    0.0.0.0:49713          0.0.0.0:0              LISTENING
.. snip ..
도구 다운로드