18.3 Splunk Reports and Alerts Flashcards

1
Q

What are the three primary methods for accessing data in Splunk?

A
  1. Monitoring logs from a system, device, or application that it has direct access to.
  2. Forwarding logs from devices into Splunk.
  3. Uploading logs directly into your Splunk repository.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Splunk’s primray feature?

A

Searching

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Splunk uses ______ search.

A

Splunk uses time-based search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Splunk has the ability to display search results in an easy-to-read format using the ______ feature.

A

Splunk has the ability to display search results in an easy-to-read format using the **Statistics** feature.

  • Splunk uses the Statistics feature to display specific data points from your search results in a simple spreadsheet.
  • The stats command is the most basic Splunk command to create a statistical report, though there are other commands and methods we can use to create statistical reports.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The _____ command creates additional fields to be added to a statistical report.

A

The eval command creates additional fields to be added to a statistical report.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Explain the follwong SPL query:

source=”statsreport.csv” | eval BruteForce = if(‘EventCode’=”4740”,”Potential Brute Force”, “Not Brute Force”)

A
    • source="statsreport.csv": Searches through all the results from the statsreport.csv file.
  • eval BruteForce: Creates a new field called BruteForce.
  • if('EventCode'="4740",: States the expression, If the event code field has a value of 4740.
  • "Potential Brute Force",: Continues the statement with, If true, name this value Potential Brute Force. This is the value to display if the expression for the event is true.
  • "Not Brute Force": Continues the statement with, If false, name this value Not Brute Force.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The _____ and _____ commands can display data in an easy-to-consume format, similar to a spreadsheet.

A

The stats and top commands can display data in an easy-to-consume format, similar to a spreadsheet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly