Skip to content

Commit

Permalink
timechart
Browse files Browse the repository at this point in the history
  • Loading branch information
rev10d committed Sep 17, 2024
1 parent a09aab2 commit 48a4022
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,25 @@ SecurityEvent
| project TimeGenerated , Activity , Account
```

Luis and Heloise are both canary accounts we know and maintain. Let's check on them.

```
SecurityEvent
| where EventID == 4624 or EventID == 4625 or EventID == 4776
| where Account contains "Heloise" or Account contains "luis"
| project Activity, Account, Computer, IpAddress
```

Ever seen a password spray in real time logs?

```
SecurityEvent
| where EventID == 4625
| where TimeGenerated > ago(24h)
| summarize Count=count() by bin(TimeGenerated, 1m)
| render timechart
```

## Attack Detect Defend - Part 2 (~09/17/24 10:00 AM)

### Slides
Expand Down

0 comments on commit 48a4022

Please sign in to comment.