Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 758 Bytes

windows_driver_analysis.md

File metadata and controls

28 lines (16 loc) · 758 Bytes

#Windows Driver Analysis

Purpose: Find malware running in Windows drivers across a network

Data Required: List of drivers loaded on each endpoint

Collection Considerations: Typically use the driverquery command on each host.

Analysis Techniques: Stack counting

Description

Examine driver entries for:

  • Impossible, zeroed or garbage link dates
  • Stack each binary image and look for unusual link dates
  • Unusual filenames or locations of binaries
  • Rare descriptions
  • Incorrect descriptions (grammar, typos, punctuation, etc)
  • Rare display names
  • Missing, invalid or unusual digital signatures

More Info