Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

Β·Β·FeedsΒ·ContactΒ·PrivacyΒ·Β© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/lofcz/thirdeye
Defensive ToolsPrivilege EscalationIDS/IPS EvasionRed TeamingAnti-Bot
GitHublofcz/thirdeye

thirdeye

The Third Eye πŸ‘βƒ€

View Repository
42861 month agoReviewed by Kitploit

Most Popular

View all β†’

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools β†’
Share

ThirdEye

Third Eye

Usermode WDA_MONITOR/WDA_EXCLUDEFROMCAPTURE bypasser using undocumented Windows functions with C# bindings.

Starring:

  • PEB walking
  • Halo's Gate
  • Custom PE sections
  • Undocumented Windows functions
  • Quick and dirty EDR/AV evasion (2/72 on VirusTotal)
  • Direct syscalls

Getting Started

Install the package:

root@kitploit:~
dotnet add thirdeye

Usage (C#)

Take screenshots unmasking any hidden windows:

root@kitploit:~
using ThirdEye;

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

Options are available:

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

If needed, screenshots can be stored in memory:

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

Usage (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);
}
Download Tool