No description
Find a file
Duncan Ogilvie 1731ac0ae9
Some checks failed
Visual Studio / build (push) Has been cancelled
Bound ObjectTypes traversal to native output
2026-07-18 15:36:03 +02:00
.github/workflows Close additional anti-debug side channels 2026-07-18 13:11:04 +02:00
hooks pre-commit hooks and editorconfig 2016-10-06 09:19:54 +02:00
TitanHide Bound ObjectTypes traversal to native output 2026-07-18 15:36:03 +02:00
TitanHide_OllyDbg Allow setting the driver name for GUI and x64dbg plugin 2025-06-01 16:44:36 +02:00
TitanHide_TitanEngine Allow setting the driver name for GUI and x64dbg plugin 2025-06-01 16:44:36 +02:00
TitanHide_x64dbg Fix current driver name 2025-07-07 20:29:46 +08:00
TitanHideGUI Allow setting the driver name for GUI and x64dbg plugin 2025-06-01 16:44:36 +02:00
TitanHideTest Bound ObjectTypes traversal to native output 2026-07-18 15:36:03 +02:00
.editorconfig pre-commit hooks and editorconfig 2016-10-06 09:19:54 +02:00
.gitignore Log(): use DbgPrintEx so driver output is visible in DebugView 2019-03-10 20:55:03 +01:00
AStyle.dll pre-commit hooks and editorconfig 2016-10-06 09:19:54 +02:00
AStyleWhore.exe pre-commit hooks and editorconfig 2016-10-06 09:19:54 +02:00
BreakOnSysRq.reg updated README 2015-02-02 23:42:59 +01:00
install.bat pre-commit hooks and editorconfig 2016-10-06 09:19:54 +02:00
LICENSE added MIT license 2015-02-01 23:40:41 +01:00
README.md Update README with hiding instructions and warnings 2025-09-02 16:03:24 +02:00
release.bat Fix solution directory structure and release script 2021-10-27 17:42:29 +02:00
TitanHide.sln Update to VS2019 2020-10-03 22:04:53 +02:00

**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:

To load the driver you can enable test signing:

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!