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

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

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

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

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
thirdeye — 第三の目 👁⃤ | Kitploit
ツール/GitHubGitHub/lofcz/thirdeye
防御ツール特権昇格IDS/IPS回避レッドチーミングアンチボット
GitHublofcz/thirdeye

thirdeye

第三の目 👁⃤

リポジトリを見る
42861ヶ月前Kitploit レビュー済み

人気

すべて見る →

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

すべてのツールを探索

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

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

ThirdEye

Third Eye

未公開の Windows 関数と C# バインディングを使用して、ユーザーモードで WDA_MONITOR/WDA_EXCLUDEFROMCAPTURE をバイパスするツール。

出演:

  • PEB ウォーキング
  • Halo's Gate
  • カスタム PE セクション
  • 未公開の Windows 関数
  • 手っ取り早い EDR/AV 回避(VirusTotal で 2/72)
  • ダイレクト システムコール

はじめに

パッケージをインストールします:

root@kitploit:~
dotnet add thirdeye

使用方法 (C#)

隠されたウィンドウを可視化してスクリーンショットを撮影します:

root@kitploit:~
using ThirdEye;

using var session = new ThirdEyeSession()
session.CaptureToFile("screenshot.png");

オプションも利用できます:

root@kitploit:~
using var session = new ThirdEyeSession();
var options = new ThirdEyeOptions(
    format: ThirdeyeFormat.Jpeg,
    quality: 90,
    bypassProtection: true
);
    
session.CaptureToFile("screenshot.jpeg", options);

必要に応じて、スクリーンショットをメモリ上に保存することもできます:

root@kitploit:~
using var session = new ThirdEyeSession()
byte[] bufferData = session.CaptureToBuffer();

使用方法 (C/C++)

root@kitploit:~
#include "thirdeye_core.h"

ThirdeyeContext* ctx = nullptr;
if (Thirdeye_CreateContext(&ctx) == THIRDEYE_OK) {
    Thirdeye_CaptureToFile(ctx, L"screenshot.jpg", nullptr);
    Thirdeye_DestroyContext(ctx);
}
ツールをダウンロード