This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [WinEventLog://Security] | |
| disabled = 0 | |
| start_from = oldest | |
| current_only = 0 | |
| evt_resolve_ad_obj = 1 | |
| checkpointInterval = 5 | |
| blacklist1 = EventCode="4662" Message="Object Type:(?!\s*groupPolicyContainer)" | |
| blacklist2 = EventCode="566" Message="Object Type:(?!\s*groupPolicyContainer)" | |
| blacklist3 = EventCode="4688" Message="New Process Name:\s*(?i)(?:[C-F]:\\Program Files\\Splunk(?:UniversalForwarder)?\\bin\\(?:btool|splunkd|splunk|splunk\-(?:MonitorNoHandle|admon|netmon|perfmon|powershell|regmon|winevtlog|winhostinfo|winprintmon|wmi))\.exe)" | |
| blacklist4 = EventCode="4689" Message="Process Name:\s*(?i)(?:[C-F]:\\Program Files\\Splunk(?:UniversalForwarder)?\\bin\\(?:btool|splunkd|splunk|splunk\-(?:MonitorNoHandle|admon|netmon|perfmon|powershell|regmon|winevtlog|winhostinfo|winprintmon|wmi))\.exe)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| EventCode=4688 | |
| | table _time ComputerName New_Process_Name New_Process_ID Creator_Process_ID | |
| | eval proc_name_id_all=New_Process_Name."#mysep#".New_Process_ID | |
| | sort 0 + _time | |
| | streamstats time_window=60s values(proc_name_id_all) AS proc_name_id_all by ComputerName | |
| | eval parent=mvfind(proc_name_id_all, "#mysep#".Creator_Process_ID."$") | |
| | eval parent=replace(mvindex(proc_name_id_all,parent), "^(.+)#mysep#.+$", "\1") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2 Search ideas to to try to find if we are receiving the correct amount of data based on averages of same hour and same day for multiple weeks in the past | |
| Using streamstats: | |
| |tstats count index, _time span=1h | |
| | sort 1-_time | |
| | eval weekday=strftime(_time,"%a") | |
| | eval week_hour=strftime(_time, "%H") | |
| | eval today=strftime(now(), "%a") | |
| | eval hour=strftime(relative_time(now(), "-1h"), "%H") | |
| | eval sameDay=if(today=weekday AND hour = week_hour ,1,0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form> | |
| <label>Splunk Users and Activity</label> | |
| <fieldset submitButton="false"> | |
| <input type="time" token="field1" searchWhenChanged="true"> | |
| <label>Date</label> | |
| <default> | |
| <earliest>-7d@h</earliest> | |
| <latest>now</latest> | |
| </default> | |
| </input> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <dashboard> | |
| <label>Top Cumulative Search Run Times</label> | |
| <row> | |
| <panel> | |
| <table> | |
| <title>Top Cumulative Search Run Times</title> | |
| <search> | |
| <query>( index=_internal sourcetype="scheduler" savedsearch_name=* run_time=* scheduled_time=* app=* user=* user!=nobody sid=* ) OR ( ( index=sos OR index=os ) sourcetype="ps" ARGS="*search*" RSZ_KB=* id user ) | rex field=ARGS "search(_|\s)--id=(?<sid>[\_\-\w\.]+)(_|\s)--" | rex field=ARGS "--user=(?<user>.+?)(_|\s)--" | stats values(run_time) as run_time, max(RSZ_KB) as RSZ_KB, max(VSZ_KB) as VSZ_KB, values(savedsearch_name) as savedsearch_name, values(user) as user by sid | stats sum(run_time) as sum_run_time, max(run_time) as max_run_time, max(RSZ_KB) as max_RSZ_KB, by savedsearch_name, user | sort - max_run_time, max_RSZ_KB | eval minute_threshold = 5 | where max_run_time>(60*minute_threshold) OR sum_run_time>(60*minute_threshold) | join type=left user [ | rest /services/au |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ▶ | tstats summariesonly=t count WHERE index=* by splunk_server _time | timechart span=5m sum(count) by splunk_server |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://sourceforge.net/projects/syslog-slogger/ | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| index=_internal source=*splunkd.log* AggregatorMiningProcessor OR LineBreakingProcessor OR DateParserVerbose WARN | |
| | rex "(?<type>(Failed to parse timestamp | |
| |suspiciously far away | |
| |outside of the acceptable time window | |
| |too far away from the previous | |
| |Accepted time format has changed | |
| |Breaking event because limit of \d+|Truncating line because limit of \d+))" | |
| | eval type=if(isnull(type),"unknown",type) | |
| | rex "source::(?<eventsource>[^\|]*)\|host::(?<eventhost>[^\|]*)\|(?<eventsourcetype>[^\|]*)\|(?<eventport>[^\s]*)" | |
| | eval eventsourcetype=if(isnull(eventsourcetype),data_sourcetype,eventsourcetype) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://conf.splunk.com/files/2017/slides/automate-security-operations-with-phantom-splunk.pdf | |
| https://conf.splunk.com/files/2017/slides/creating-welcome-pages.pdf | |
| https://conf.splunk.com/files/2017/slides/sandboxing-with-splunk-with-docker.pdf | |
| https://conf.splunk.com/files/2017/slides/using-netflow-for-insider-threat-detection.pdf | |
| https://conf.splunk.com/files/2017/slides/advanced-dashboarding-tips-techniques.pdf | |
| https://conf.splunk.com/files/2017/slides/analyzing-and-measuring-webinar-impact-with-splunk.pdf | |
| https://conf.splunk.com/files/2017/slides/beat-business-rules-the-power-of-combining-text-mining-and-machine-learning-on-your-logs-for-accurate-and-fully-automatic-classification.pdf | |
| https://conf.splunk.com/files/2017/slides/building-a-product-business-on-top-of-splunk.pdf | |
| https://conf.splunk.com/files/2017/slides/bushfire-alerting-automation-system.pdf | |
| https://conf.splunk.com/files/2017/slides/business-value-delivery-for-enterprise-splunk-customers-a-use-case-from-abn-amro-bank.pdf |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://conf.splunk.com/files/2017/slides/a-day-in-the-life-of-a-gdpr-breach.pdf | |
| https://conf.splunk.com/files/2017/slides/a-journey-to-awesome-without-the-baggage-how-difficult-became-easy-with-splunk-at-john-lewis.pdf | |
| https://conf.splunk.com/files/2017/slides/a-trip-through-the-splunk-data-ingestion-and-retrieval-pipeline.pdf | |
| https://conf.splunk.com/files/2017/slides/apt-splunking-searching-for-adversaries-with-quadrants-and-other-methods.pdf | |
| https://conf.splunk.com/files/2017/slides/achieve-operational-efficiency-in-car-manufacturing-with-advanced-analytics.pdf | |
| https://conf.splunk.com/files/2017/slides/acute-care-telemetry-datastream-process-monitoring-visualization-and-search-with-splunk.pdf | |
| https://conf.splunk.com/files/2017/slides/advanced-analytics-with-splunk-using-apache-spark-machine-learning-and-spark-graph.pdf | |
| https://conf.splunk.com/files/2017/slides/advanced-machine-learning-using-the-extensible-ml-api.pdf | |
| https://conf.splunk.com/files/2017/slides/advanced-security-monitoring-for-critical-groups |
NewerOlder