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

Update qakbot-campaign-process-injection.md #429

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
10 changes: 4 additions & 6 deletions Defense evasion/qakbot-campaign-process-injection.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ The following query detects if Qakbot has injected code into the *ping.exe* proc
## Query

```Kusto
DeviceProcessEvents
| where FileName == "esentutl.exe"
| where ProcessCommandLine has "WebCache"
| where ProcessCommandLine has_any ("V01", "/s", "/d")
| project ProcessCommandLine, InitiatingProcessParentFileName,
DeviceId, Timestamp
DeviceImageLoadEvents
| where InitiatingProcessFileName =~ "ping.exe"
| where FileName =~ "vaultcli.dll"
| project InitiatingProcessFileName, InitiatingProcessCommandLine, FileName, DeviceId, Timestamp
```

## Category
Expand Down