Query Details

Show All Drivers That Are Not Signed

Query

// Use Case: Identifying unsigned drivers in a Windows operating system for security auditing and compliance.
WindowsDriver
| where Signed != true

Explanation

This query is designed to help identify unsigned drivers on a Windows operating system, which is important for security auditing and compliance purposes. In simple terms, it looks through a list of Windows drivers and filters out those that are not signed. A signed driver is one that has been verified by a trusted source, ensuring its authenticity and integrity. By identifying unsigned drivers, you can pinpoint potential security risks, as these drivers may not have been properly vetted and could pose a threat to the system.

Details

Ugur Koc profile picture

Ugur Koc

Released: December 13, 2024

Tables

WindowsDriver

Keywords

WindowsDriver

Operators

|where!=

Actions

GitHub