2022-01-09 12:37:23 +01:00
title : Suspicious IO.FileStream
id : 70ad982f-67c8-40e0-a955-b920c2fa05cb
status : experimental
2022-01-09 16:12:31 +01:00
description : Open a handle on the drive volume via the \\.\ DOS device path specifier and perform direct access read of the first few bytes of the volume.
2022-01-09 12:37:23 +01:00
date : 2022 /01/09
2022-03-05 10:39:15 +01:00
modified : 2022 /03/05
2022-01-09 12:37:23 +01:00
author : frack113
references :
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1006/T1006.md
logsource :
product : windows
category : ps_script
definition : Script block logging must be enabled
detection :
selection :
ScriptBlockText|contains|all :
- New-Object
- IO.FileStream
2022-03-05 10:39:15 +01:00
- '\\\\.\\'
2022-01-09 12:37:23 +01:00
condition : selection
falsepositives :
- Legitimate PowerShell scripts
level : medium
tags :
- attack.defense_evasion
2022-01-09 16:12:31 +01:00
- attack.t1070.003