mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
19 lines
845 B
YAML
19 lines
845 B
YAML
name: Investigate Web POSTs From src
|
|
id: f5c39fac-205c-4e07-9004-8fd61ea3431a
|
|
version: 1
|
|
date: '2018-12-06'
|
|
description: 'This investigative search retrieves POST requests from a specified source
|
|
IP or hostname. Identifying the POST requests, as well as their associated destination
|
|
URLs and user agent(s), may help you scope and characterize the suspicious traffic. '
|
|
how_to_implement: To successfully implement this search, you must be ingesting your
|
|
web-traffic logs and populating the web data model.
|
|
author: Jose Hernandez, Splunk
|
|
inputs:
|
|
- src
|
|
search: '| tstats `security_content_summariesonly` values(Web.url) as url from datamodel=Web
|
|
by Web.src,Web.http_user_agent,Web.http_method | `drop_dm_object_name("Web")`| where
|
|
like(src, "$src$") and like(http_method, "POST")'
|
|
tags:
|
|
analytics_story:
|
|
- Apache Struts Vulnerability
|