Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Update qakbot-campaign-esentutl.md #253

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions Discovery/qakbot-campaign-esentutl.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ The following query detects possible use of the system process, *esentutl.exe*,

```Kusto
DeviceProcessEvents
| where FileName == "esentutl.exe"
| where ProcessCommandLine has "WebCache"
| where ProcessCommandLine has_any ("V01", "/s", "/d")
| project ProcessCommandLine,
InitiatingProcessParentFileName, DeviceId, Timestamp
| where FileName =~ "esentutl.exe"
| where ProcessCommandLine contains "WebCache"
| where ProcessCommandLine contains "V01" or ProcessCommandLine contains @"/s" or ProcessCommandLine contains @"/d"
| project ProcessCommandLine, InitiatingProcessParentFileName, DeviceId, Timestamp
```

## Category
Expand Down