Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
windbg_js_scripts — Toy scripts for playing with WinDbg JS API | Kitploit
ツール/GitHubGitHub/hugsy/windbg_js_scripts
Memory ForensicsDynamic Code Analysis (DAST)Reverse EngineeringDebuggersFuzzingBinary Analysis
GitHubhugsy/windbg_js_scripts

windbg_js_scripts

Toy scripts for playing with WinDbg JS API

リポジトリを見る
244402年前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
ツールをダウンロード