SOC Analyst - SPL Commands - Deck 1

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:57 AM on 6/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

"Count all events"

"index=* | stats count"

2
New cards

"Count events by host"

"index=* | stats count by host"

3
New cards

"Count unique users"

"index=* | stats dc(user)"

4
New cards

"Show all unique users"

"index=* | stats values(user)"

5
New cards

"Show all user values including duplicates"

"index=* | stats list(user)"

6
New cards

"Display only host

source

7
New cards

"Show the most common users"

"index=* | top user"

8
New cards

"Show the least common users"

"index=* | rare user"

9
New cards

"Sort results by count from highest to lowest"

"… | sort -count"

10
New cards

"Sort results by count from lowest to highest"

"… | sort count"

11
New cards

"Remove duplicate users"

"index=* | dedup user"

12
New cards

"Keep only the host and user fields"

"index=* | fields host user"

13
New cards

"Rename src_ip to SourceIP"

"index=* | rename src_ip AS SourceIP"

14
New cards

"Filter for events where user is jdoe"

"index=* | search user=jdoe"

15
New cards

"Show only results where count is greater than 10"

"… | where count>10"

16
New cards

"Create a field named Status with value Success"

"… | eval Status=\"Success\""

17
New cards

"Count events by sourcetype"

"index=* | stats count by sourcetype"

18
New cards

"Create a chart of event count by host"

"index=* | chart count by host"

19
New cards

"Show event volume over time"

"index=* | timechart count"

20
New cards

"Search the last 24 hours"

"index=* earliest=-24h"

21
New cards

"Search the last 7 days"

"index=* earliest=-7d"

22
New cards

"Search the last 30 minutes"

"index=* earliest=-30m"

23
New cards

"Return only the first 10 results"

"index=* | head 10"

24
New cards

"Return only the last 10 results"

"index=* | tail 10"

25
New cards

"Enrich events using a lookup table"

"index=* | lookup mylookup keyfield OUTPUT valuefield"