Convert Figma logo to code with AI

nefarius logoHidHide

Gaming Input Peripherals Device Firewall for Windows.

1,029
83
1,029
8

Top Related Projects

Windows kernel-mode driver emulating well-known USB game controllers.

The Interception API aims to build a portable programming interface that allows one to intercept and control a range of input devices.

Like those other ds4tools, but sexier

Quick Overview

HidHide is an open-source Windows kernel-mode driver and user-mode companion application that allows users to selectively hide USB devices from certain processes. It's primarily used to prevent games and applications from detecting specific input devices, which can be useful for various scenarios such as using third-party controllers or input remapping tools.

Pros

  • Provides a way to hide USB devices from specific applications without affecting system-wide functionality
  • Offers both a kernel-mode driver and a user-mode application for comprehensive device hiding
  • Supports 64-bit Windows operating systems
  • Actively maintained and updated by the community

Cons

  • Requires installation of a kernel-mode driver, which may pose security risks if not properly implemented
  • Limited to Windows operating systems only
  • May require frequent updates to maintain compatibility with new Windows versions and security patches
  • Can potentially interfere with anti-cheat systems in some games

Getting Started

To use HidHide, follow these steps:

  1. Download the latest release from the GitHub releases page.
  2. Run the installer as an administrator.
  3. Reboot your system after installation.
  4. Launch the HidHide Configuration Client from the Start menu.
  5. Use the client to select which devices to hide and which applications should not see the hidden devices.

Note: Ensure you have the latest Windows updates installed and that your system supports driver signature enforcement.

Competitor Comparisons

Windows kernel-mode driver emulating well-known USB game controllers.

Pros of ViGEmBus

  • Emulates virtual game controllers, allowing for more versatile input device management
  • Supports a wider range of device types, including Xbox 360 and DualShock 4 controllers
  • Provides a robust API for developers to create custom input solutions

Cons of ViGEmBus

  • More complex to set up and use compared to HidHide's straightforward hiding functionality
  • Requires additional software or scripts to fully utilize its capabilities
  • May have a slightly higher performance overhead due to its emulation features

Code Comparison

HidHide (C++):

NTSTATUS HidHide_CreateDevice(_Inout_ PWDFDEVICE_INIT DeviceInit)
{
    NTSTATUS status;
    WDFDEVICE device;
    PDEVICE_CONTEXT deviceContext;

ViGEmBus (C):

NTSTATUS
Bus_EvtDeviceAdd(
    _In_    WDFDRIVER       Driver,
    _Inout_ PWDFDEVICE_INIT DeviceInit
)
{
    NTSTATUS                status;

Both repositories are driver-level projects, but they serve different purposes. HidHide focuses on hiding specific HID devices from other applications, while ViGEmBus creates virtual game controllers. The code snippets show similarities in their device initialization processes, reflecting their shared nature as Windows drivers.

The Interception API aims to build a portable programming interface that allows one to intercept and control a range of input devices.

Pros of Interception

  • Provides more advanced input manipulation capabilities, including key remapping and macro creation
  • Supports a wider range of input devices, including keyboards, mice, and gamepads
  • Offers lower-level access to input events, allowing for more precise control

Cons of Interception

  • Requires a driver installation, which may pose security risks and system stability concerns
  • More complex to set up and use, with a steeper learning curve for developers
  • Less actively maintained, with fewer recent updates compared to HidHide

Code Comparison

HidHide:

BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
    case DLL_THREAD_ATTACH:
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
        break;
    }
    return TRUE;
}

Interception:

INTERCEPTION_API int INTERCEPTION_CALL interception_send(InterceptionContext context, InterceptionDevice device, const InterceptionStroke *stroke, unsigned int nstroke)
{
    if(context == NULL || stroke == NULL) return -1;
    if(nstroke == 0) return 0;
    return context->send(device, stroke, nstroke);
}

The code snippets show that HidHide focuses on DLL initialization, while Interception provides a function for sending input events, highlighting their different approaches to input handling.

Like those other ds4tools, but sexier

Pros of DS4Windows

  • Provides extensive controller customization and remapping options
  • Supports multiple controller types beyond just DualShock 4
  • Offers a user-friendly GUI for easy configuration

Cons of DS4Windows

  • Requires more setup and configuration than HidHide
  • May have compatibility issues with some games or applications
  • Consumes more system resources due to its broader feature set

Code Comparison

DS4Windows (C#):

public static bool IsValidSerial(string serial)
{
    return !string.IsNullOrEmpty(serial) &&
        serial.Length == 12 &&
        serial.All(c => char.IsLetterOrDigit(c));
}

HidHide (C++):

BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
{
    switch (ul_reason_for_call)
    {
    case DLL_PROCESS_ATTACH:
    case DLL_THREAD_ATTACH:
    case DLL_THREAD_DETACH:
    case DLL_PROCESS_DETACH:
        break;
    }
    return TRUE;
}

The code snippets show different languages and purposes. DS4Windows focuses on input validation, while HidHide deals with DLL initialization. This reflects their distinct functionalities: DS4Windows for controller management and HidHide for device hiding.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

HidHide

Build status GitHub All Releases Chocolatey package GitHub issues by-label GitHub issues by-label

Gaming Input Peripherals Device Firewall for Windows.

Introduction

Microsoft Windows offers support for a wide range of human interface devices, like joysticks and game pads. Associating the buttons and axes of these devices with application specific behavior, such as Fire, Roll, or Pitch is however left to the individual application developers to realize.

While there are good examples of applications allowing a user to customize the controls to their liking, other applications are less sophisticated or lack just that feature a user is looking for. This is where utilities like vJoy and Joystick Gremlin come to the rescue. These utilities aren't limited by a vendor lock-in and attempt to move certain features back into the domain of the operating system. Once properly arranged, a feature becomes universally available for a wide range of applications.

A technique used by these utilities is to use a feeder application that listens to the physical devices on a system, and in turn controls one or more virtual devices where the game or application is listening to. Mapping physical devices to a virtual device allows for e.g. dual joystick support in games that only support a single joystick, or enable multiple devices to bind to the one and same function in a game that only supports single controller bindings.

While this approach offers a lot of advantages, it also comes with a side effect. Most applications record the user interactions while binding a function with a control or button press. When a virtual device is used, the application receives input from two devices simultaneously. It will be notified by both the physical device triggered, and the virtual device that acts in turn! Some feeders have an option to spam the application repeatedly; however, that approach is cumbersome and error prone.

With HidHide it is possible to deny a specific application access to one or more human interface devices, effectively hiding a device from the application. When a HOTAS is preferred for a flight-simulator one can hide the game pads. When a steering wheel is preferred for a racing game, one can hide the joysticks, and so on. When, as mentioned above, a feeder utility is used, one can use HidHide to hide the physical device from the application, hence avoiding multiple notifications while binding game functions and device controls.

Package content

HidHide is a kernel-mode filter driver available for Windows 10 or higher (KMDF 1.13+). It comes with a configuration utility via which the driver is configured and controlled. The filter driver starts automatically and runs unattended with system privileges. A system reboot may be triggered after driver installation or removal. The configuration utility runs in the least privileged mode and doesn't require elevated rights.

User guide

The configuration utility allows you to:

  • Enable or disable the service
  • Specify which applications may look through the cloak
  • Specify the human interface devices that should be hidden from ordinary applications

The main dialog of the configuration utility offers two main tabs. Screen capture of applications tab

The Applications tab shows all white-listed applications that are allowed access to the hidden devices. Typically listed here are vendor-specific utilities for configuring the human interface devices, and feeder utilities. Entries can be added to the list by pressing +. Select one or more entries with the shift and/or control key and press - to remove entries from the list. Notice that the client replaces a logical drive letter by a full path. This is intentionally and offers some resilience for changes in logical drive mapping.

Screen capture of devices tab

Per default, the Devices tab lists all Gaming devices currently connected to the system. The list refreshes automatically when a new device is detected. The dialog offers two check boxes for filtering.

Via Filter-out disconnected one can extend the list with devices that were connected earlier to the system but are currently not present. With Gaming devices only one can limit the list to game pads and joysticks only. This feature relies on proper information from the device vendors. Some vendors however use vendor-specific codes. Be sure to switch off this filter should you notice that your gaming device seems absent in the list. The filters are ignored for devices that are selected for hiding, so that one has a complete overview on the hidden devices.

Last but not least, the Enable device hiding check box provides control over the HidHide service. When enabled it blocks access to the black-listed devices unless the application is explicitly white-listed. When disabled, all applications are granted access to all devices.

An entry in the list can be expanded to reveal the composite devices associated with a device and offers fine-grained control over a device. HidHide uses the selection also for a secondary purpose. Some legacy applications ignore the human interface device layer offered by the operating system and instead interact with the underlying device driver. Access to the underlying driver will be blocked when a device only has composite HID devices, and all are selected.

The expanded list may mark entries as absent or denied. absent entries appear when the device characteristics are altered. These are residual entries in the caches of the operating system, and can be cleaned-up using utilities like Device Cleanup Tool. denied entries appear for hidden devices when the configuration utility itself is not whilelisted.

Package integration

Installation packages and third-party applications can rely on the following two registry keys. "HKCR\Installer\Dependencies\NSS.Drivers.HidHide.x64\Version" signals the availability of HidHide and its version. "HKCR\SOFTWARE\Nefarius Software Solutions e.U.\Nefarius Software Solutions e.U. HidHide\Path" tells its location.

Third-party software deployment may benefit from the HidHide Command Line Interface (CLI) while deploying software. Please be conservative while altering a clients' configuration and only extend the configuration with new features offered. Don't assume exclusive ownership of the configuration settings as a recovery typically requires manual actions by the user.

Bugs & Features

Found a bug and want it fixed? Feel free to open a detailed issue on the GitHub issue tracker!

There is currently no capacity for any majopr works on HidHide, if you wish to see this change, consider contributing.

Contact us through Discord!


HidHide provides both logging and tracing. Logging can be found the Event Viewer under Windows Logs and System. Tracing can be found under Applications and Services Logs and Nefarius after enabling Show Analytic and Debug Logs. Extended tracing is available but switched off per default for performance reasons. Tracing is controlled using the wevtutil utility which is an integral part of the operating system. To enable extended tracing, open a command shell, and enter the following;

wevtutil set-log Nefarius-Drivers-HidHide/Diagnostic /e:false
wevtutil set-log Nefarius-Drivers-HidHide/Diagnostic /k:5
wevtutil set-log Nefarius-Drivers-HidHide/Diagnostic /e:true

Tracing adjustments remain in affect after a reboot. Restore tracing to its default level using the above sequence with /k:1 instead. Tracing to the debug console is enabled with /k:3 and /k:7 respectively.

Questions & Support

Please respect that the GitHub issue tracker isn't a help desk. Look at the community support resources.

Donations

From creator Eric

Creating a utility like this requires time and dedication. Should you like to express your gratitude, consider a pledge for a game I'm rather fond of; the biggest crowd funded game currently in development Star Citizen. Be sure to apply a referral code at account creation as it gives a bit more in-game currency and can't be applied later on. My referral code is STAR-K6S5-KPY7 should you seek one. Have fun and see you in the verse!

From maintainer Nefarius

You can find all my donation options over here!