Developer knowledge network · moderated exchange

UnreliableCode コミュニティ

開発者リサーチ、リバース エンジニアリング、コーディング コミュニティ

Guide

Handling IRP completion routines in Storage Filter Drivers for serial spoofing

kernel_komrade
Driver Dev
MEMBER
担当者: 145
参加日: Feb 2019
投稿: 26
ありがとう: 45
1 か月前 · Jul 15, 2026 9:10 PM
#1

To spoof hard drive SMART serial numbers at the kernel level:

  1. Attach a filter driver to \Driver\Disk or \Driver\Storport.
  2. Intercept IRP_MJ_DEVICE_CONTROL requests where IoControlCode == IOCTL_STORAGE_QUERY_PROPERTY.
  3. Set an IoCompletionRoutine and pass the IRP down the driver stack.
  4. In the completion routine, when the disk controller fills the STORAGE_DEVICE_DESCRIPTOR buffer, scramble the SerialNumberOffset string with randomized alphanumeric bytes before returning to userland!
dma_ghost
DMA Guru
MEMBER
担当者: 115
参加日: Jan 2020
投稿: 12
ありがとう: 83
1 か月前 · Jul 16, 2026 1:35 AM
#2

Disk filter driver completion routine is the cleanest way to spoof disk serials across all Windows versions.

val_driver_guy
Driver Dev
MEMBER
担当者: 42
参加日: May 2019
投稿: 24
ありがとう: 37
1 か月前 · Jul 16, 2026 11:32 AM
#3

Completely changes what wmic diskdrive get serialnumber returns.