2cb7375c6b
update: Cred Dump Tools Dropped Files - Add procdump.exe and procdump64a.exe update: File Download From Browser Process Via Inline URL - Enhance selection by splitting CLI markers for better matching update: Tor Client/Browser Execution - Add additional PE metadata markers update: System Information Discovery via Registry Queries - Enhance registry markers update: PUA - AdFind Suspicious Execution - Add -sc to dclist string for more accurate coverage. fix: Removal Of Index Value to Hide Schedule Task - Registry - Remove EventType condition that broke the rule. fix: Removal Of SD Value to Hide Schedule Task - Registry - Remove EventType condition that broke the rule. fix: Creation of a Local Hidden User Account by Registry - Fix the TargetObject value fix: Potential Persistence Via New AMSI Providers - Registry - Change logsource and fix the rule logic fix: Potential COM Object Hijacking Via TreatAs Subkey - Registry - Change logsource and fix the rule logic fix: Potential Persistence Via Logon Scripts - Registry - Fix incorrect logsource fix: PUA - Sysinternal Tool Execution - Registry - Fix incorrect logsource fix: Suspicious Execution Of Renamed Sysinternals Tools - Registry - Fix incorrect logsource fix: PUA - Sysinternals Tools Execution - Registry - Fix incorrect logsource chore: add CI script for regression chore: add regression data --------- Co-authored-by: swachchhanda000 <87493836+swachchhanda000@users.noreply.github.com> Co-authored-by: phantinuss <79651203+phantinuss@users.noreply.github.com>
40 lines
1.6 KiB
YAML
40 lines
1.6 KiB
YAML
title: DriverQuery.EXE Execution
|
|
id: a20def93-0709-4eae-9bd2-31206e21e6b2
|
|
related:
|
|
- id: 9fc3072c-dc8f-4bf7-b231-18950000fadd
|
|
type: similar
|
|
status: test
|
|
description: Detect usage of the "driverquery" utility. Which can be used to perform reconnaissance on installed drivers
|
|
references:
|
|
- https://thedfirreport.com/2023/01/09/unwrapping-ursnifs-gifts/
|
|
- https://www.vmray.com/cyber-security-blog/analyzing-ursnif-behavior-malware-sandbox/
|
|
- https://www.fireeye.com/blog/threat-research/2020/01/saigon-mysterious-ursnif-fork.html
|
|
author: Nasreddine Bencherchali (Nextron Systems)
|
|
date: 2023-01-19
|
|
modified: 2023-09-29
|
|
tags:
|
|
- attack.discovery
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection:
|
|
- Image|endswith: 'driverquery.exe'
|
|
- OriginalFileName: 'drvqry.exe'
|
|
filter_main_other: # These are covered in 9fc3072c-dc8f-4bf7-b231-18950000fadd to avoid duplicate alerting
|
|
- ParentImage|endswith:
|
|
- '\cscript.exe'
|
|
- '\mshta.exe'
|
|
- '\regsvr32.exe'
|
|
- '\rundll32.exe'
|
|
- '\wscript.exe'
|
|
- ParentImage|contains:
|
|
- '\AppData\Local\'
|
|
- '\Users\Public\'
|
|
- '\Windows\Temp\'
|
|
condition: selection and not 1 of filter_main_*
|
|
falsepositives:
|
|
- Legitimate use by third party tools in order to investigate installed drivers
|
|
level: medium # Level could be reduced to low if this utility is often used in your environment
|
|
regression_tests_path: regression_data/windows/process_creation/proc_creation_win_driverquery_usage/info.yml
|