百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
T

TitanHide

> 编程语言
开源

隐藏 x86/x64 的内核驱动程序。

2.8K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

隐藏 x86/x64 的内核驱动程序。

**Do not come here and open issues about problems with installation, crashes with bug check 0x109: CRITICAL_STRUCTURE_CORRUPTION or questions on how to disable PatchGuard. I will permanently ban you from the issue tracker. If you don't know how to properly install the tool you don't know enough to use it responsibly and you should use something else like ScyllaHide.

Overview

TitanHide is a driver intended to hide debuggers from certain processes. The driver hooks various Nt* kernel functions (using SSDT table hooks) and modifies the return values of the original functions. To hide a process, you must pass a simple structure with a ProcessID and the hiding option(s) to enable, to the driver. The internal API is designed to add hooks with little effort, which means adding features is really easy.

The idea for this project was thought of together with cypher, shoutout man!

Features

  • ProcessDebugFlags (NtQueryInformationProcess)
  • ProcessDebugPort (NtQueryInformationProcess)
  • ProcessDebugObjectHandle (NtQueryInformationProcess)
  • DebugObject (NtQueryObject)
  • SystemKernelDebuggerInformation (NtQuerySystemInformation)
  • SystemDebugControl (NtSystemDebugControl)
  • NtClose (STATUS_INVALID_HANDLE/STATUS_HANDLE_NOT_CLOSABLE exceptions)
  • ThreadHideFromDebugger (NtSetInformationThread)
  • Protect DRx (HW BPs) (NtGetContextThread/NtSetContextThread)

Test environments

  • Windows 10 x64 & x86
  • Windows 8.1 x64 & x86
  • Windows 7 x64 & x86 (SP1)
  • Windows XP x86 (SP3)
  • Windows XP x64 (SP1)

Compiling

  1. Install Visual Studio 2022.
  2. Install the WDK10/WDK8/WDK7.
  3. Open TitanHide.sln and hit compile!

Requirements

You need to disable PatchGuard and driver signing enforcement (DSE) before using this driver.

To disable PatchGuard you can try one of the following projects:

  • EfiGuard
  • SandboxBootkit
  • Shark
  • UPGDSED (archived in 2019)

To load the driver you can enable test signing:

bash
bcdedit /set testsigning on

Installation

  1. Copy TitanHide.sys to %systemroot%\system32\drivers.
  2. Run the command sc create TitanHide binPath= %systemroot%\system32\drivers\TitanHide.sys type= kernel to create the TitanHide service.
  3. Run the command sc start TitanHide to start the TitanHide service.
  4. Run the command sc query TitanHide to check if TitanHide is running.

To check if TitanHide is working correctly, use DebugView or check C:\TitanHide.log.

Hiding

For VMProtect 3.9.4 and above you need to change the service name to something else. For example sc create NotTitanHide, which will bypass their latest 'detection'. After changing the service name you will need to configure the plugin with the following command in x64dbg:

TitanHideName NotTitanHide

Remarks

  • When using x64dbg, you can use the TitanHide plugin (available on the download page).
  • NEVER RUN THIS DRIVER ON A PRODUCTION SYSTEM, ALWAYS USE A VM!

Issues· 0 开放

查看全部 Issues在 GitHub 打开

暂无开放 Issues,或尚未同步最近议题。

> 标签

Canti-debuggingdriverhacktoberfestrootkit

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言