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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
sticky_keys_hunter — RDPホストのスティッキーキーとユーティリティマネージャーのバックドアをテストするスクリプト。 | Kitploit
ツール/GitHubGitHub/ztgrace/sticky_keys_hunter
脆弱性分析ポストエクスプロイトペネトレーションテストリモートアクセスツール
GitHubztgrace/sticky_keys_hunter

sticky_keys_hunter

RDPホストのスティッキーキーとユーティリティマネージャーのバックドアをテストするスクリプト。

リポジトリを見る
263529年前Kitploit レビュー済み

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

Sticky Keys Hunter

This POC bash script tests for sticky keys and utilman backdoors. The script will connect to an RDP server, send both the sticky keys and utilman triggers and screenshot the result.

This script was written to prove a theory I had about detecting these backdoors in a blackbox fashion, and hasn't been updated since I wrote my blog post, Hunting Sticky Keys Backdoors. However, @DennisMald and @notmedic furthered this research and released the Sticky Keys Slayer tool at their DEF CON 24 presentation, Sticky Keys To The Kingdom. Check out their tool as it has many improvements over this POC script.

仕組み

  1. rdesktop を使用して RDP に接続
  2. xdotool を使用して Shift キーを 5 回送信し、sethc.exe のバックドアをトリガー
  3. xdotool を使用して Windows+U を送信し、utilman.exe のバックドアをトリガー
  4. スクリーンショットを取得
  5. RDP 接続を切断

前提条件

  1. X サーバーが動作している Linux ホスト
  2. 以下のパッケージ: xdotool imagemagick rdesktop bc 3. Debian/Ubuntu/Kali でのインストール: apt-get install xdotool imagemagick rdesktop bc
  3. この処理中に画面をロックしてはいけません。ロックするとすべてのスクリーンショットが黒くなります。

使用方法

単一ホストのスキャン: ./stickyKeysHunter.sh 192.168.1.10

複数ホストのスキャン: for i in $(cat list.txt); do ./stickyKeysHunter.sh "${i}"; done

TODO

  1. OCR または画像処理を使用してスクリーンショットを自動分析し、バックドアを特定する。
  2. ツールの高速化/マルチスレッド化。
ツールをダウンロード