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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
windbg_js_scripts — WinDbg JS API를 가지고 놀기 위한 장난감 스크립트 | Kitploit
도구/GitHubGitHub/hugsy/windbg_js_scripts
Memory ForensicsDynamic Code Analysis (DAST)Reverse EngineeringDebuggersFuzzingBinary Analysis
GitHubhugsy/windbg_js_scripts

windbg_js_scripts

WinDbg JS API를 가지고 놀기 위한 장난감 스크립트

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

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

WinDbg JavaScript 스크립트

WinDbg 갤러리로 설치

  • 저장소를 클론하세요
root@kitploit:~
git clone https://github.com/hugsy/windbg_js_scripts
  • windbg_js_scripts\config.xml에서 Setting Name="LocalCacheRootFolder" 줄을 편집하여 저장소의 로컬 경로를 반영하세요.

  • WinDbg에서 config.xml 파일을 로드하고 설정을 저장하세요:

root@kitploit:~
windbg> .settings load \path\to\windbg_js_scripts\config.xml
[...]\windbg_js_scripts\config.xml has been loaded successfully.
windbg> .settings save
Settings have been saved.

WinDbg가 로드될 때마다 갤러리는 Debugger.State.ExtensionGallery.ExtensionRepositories 아래에 로드됩니다:

root@kitploit:~
kd> dx -r1 Debugger.State.ExtensionGallery.ExtensionRepositories
Debugger.State.ExtensionGallery.ExtensionRepositories
    [0x0]            : UserExtensions
    [0x1]            : hugsysgallery
    [0x2]            : overgallery
    [0x3]            : LocalInstalled

또한 현재 세션에서 사용 가능한 스크립트를 나열할 수 있습니다:

root@kitploit:~
kd> dx -r1 Debugger.State.ExtensionGallery.ExtensionRepositories.Where( x => x.Name == "hugsysgallery" ).First().Packages
Debugger.State.ExtensionGallery.ExtensionRepositories.Where( x => x.Name == "hugsysgallery" ).First().Packages
    [0x0]            : EnumCallbacks
    [0x1]            : GetIdtGdt
    [0x2]            : BreakOnProcessCreate
    [0x3]            : DumpLookasides
    [0x4]            : GetSsdtTable
    [0x5]            : BigPool
    [0x6]            : PageExplorer
    [0x7]            : VadExplorer
    [0x8]            : ObjectExplorer
    [0x9]            : RegistryExplorer
    [0xa]            : GetSiloMonitors
    [0xb]            : EnumApc
    [0xc]            : EnvVars
    [0xd]            : EnumImages
    [0xe]            : CallGraph
    [0xf]            : TraceFunctions
    [0x10]           : CyclicPattern

관련 링크

  • https://github.com/hugsy/defcon_27_windbg_workshop/blob/master/windbg_cheatsheet.md
  • https://doar-e.github.io/blog/2017/12/01/debugger-data-model
  • https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/javascript-debugger-example-scripts
  • https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/native-objects-in-javascript-extensions
  • https://twitter.com/windbgtips
  • https://medium.com/@yardenshafir2/windbg-the-fun-way-part-1-2e4978791f9b
도구 다운로드