← Back to SOC feed Coverage →

HackTool - QuarksPwDump Dump File

sigma CRITICAL SigmaHQ
T1003.002
imFileEvent
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at SigmaHQ →
Retrieved: 2026-03-25T03:05:59Z · Confidence: medium

Hunt Hypothesis

Adversaries may use QuarksPwDump to extract credentials from memory, leveraging the dump file as part of credential theft. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate potential credential dumping attacks before they lead to lateral movement or data exfiltration.

Detection Rule

Sigma (Original)

title: HackTool - QuarksPwDump Dump File
id: 847def9e-924d-4e90-b7c4-5f581395a2b4
status: test
description: Detects a dump file written by QuarksPwDump password dumper
references:
    - https://jpcertcc.github.io/ToolAnalysisResultSheet/details/QuarksPWDump.htm
author: Florian Roth (Nextron Systems)
date: 2018-02-10
modified: 2024-06-27
tags:
    - attack.credential-access
    - attack.t1003.002
logsource:
    category: file_event
    product: windows
detection:
    selection:
        TargetFilename|contains|all:
            - '\AppData\Local\Temp\SAM-'
            - '.dmp'
    condition: selection
falsepositives:
    - Unknown
level: critical

KQL (Azure Sentinel)

imFileEvent
| where TargetFileName contains "\\AppData\\Local\\Temp\\SAM-" and TargetFileName contains ".dmp"

False Positive Guidance

MITRE ATT&CK Context

Original source: https://github.com/SigmaHQ/sigma/blob/master/rules/windows/file/file_event/file_event_win_hktl_quarkspw_filedump.yml