Splunk is a tool for monitoring and searching through big data. A default port is 8089.
Default Credentials
admin:changeme
SPL (Search Processing Language)
In Splunk, click Search & Reporting. Maybe we need to set the “All time” Preset on the right of the search form.
The cheat sheet of searching is below:
# "main" index stores all the processed dataindex="main" earliest=0
Files
index=mainexample.aspxsourcetype="<SourceType>"
EventCode
# EventCode 8: CreateRemoteThread in sysmon.index="main" sourcetype="<SourceType>" EventCode=8# EventCode 11: FileCreate in sysmon.index="main" sourcetype="<SourceType>" EventCode=11
# Retrive file locations and number of files.index="main" sourcetype="<SourceType>" EventCode=11|statscountbyTargetFilename# Client-server method "POST" and search by file formatsindex="main" sourcetype="iis" cs_method="POST"|search*.php*OR*.asp*OR*.aspx*OR*.jsp*