2020-06-29 22:57:00 -06:00
|
|
|
[metadata]
|
|
|
|
|
creation_date = "2020/02/18"
|
2022-09-19 10:56:03 -07:00
|
|
|
maturity = "deprecated"
|
2022-08-24 10:38:49 -06:00
|
|
|
min_stack_comments = "New fields added: required_fields, related_integrations, setup"
|
|
|
|
|
min_stack_version = "8.3.0"
|
2022-09-19 10:56:03 -07:00
|
|
|
updated_date = "2022/09/13"
|
|
|
|
|
deprecation_date = "2022/09/13"
|
2020-06-29 22:57:00 -06:00
|
|
|
|
|
|
|
|
[rule]
|
|
|
|
|
author = ["Elastic"]
|
|
|
|
|
description = "A request to a web application server contained no identifying user agent string."
|
|
|
|
|
false_positives = [
|
|
|
|
|
"""
|
|
|
|
|
Some normal applications and scripts may contain no user agent. Most legitimate web requests from the Internet
|
|
|
|
|
contain a user agent string. Requests from web browsers almost always contain a user agent string. If the source is
|
|
|
|
|
unexpected, the user unauthorized, or the request unusual, these may indicate suspicious or malicious activity.
|
|
|
|
|
""",
|
|
|
|
|
]
|
2021-07-13 09:04:58 -04:00
|
|
|
index = ["apm-*-transaction*", "traces-apm*"]
|
2020-06-29 22:57:00 -06:00
|
|
|
language = "kuery"
|
2021-03-03 22:12:11 -09:00
|
|
|
license = "Elastic License v2"
|
2020-06-29 22:57:00 -06:00
|
|
|
name = "Web Application Suspicious Activity: No User Agent"
|
|
|
|
|
references = ["https://en.wikipedia.org/wiki/User_agent"]
|
|
|
|
|
risk_score = 47
|
|
|
|
|
rule_id = "43303fd4-4839-4e48-b2b2-803ab060758d"
|
|
|
|
|
severity = "medium"
|
2020-10-26 13:50:45 -05:00
|
|
|
tags = ["Elastic", "APM"]
|
2021-02-16 10:52:48 -09:00
|
|
|
timestamp_override = "event.ingested"
|
2020-06-29 22:57:00 -06:00
|
|
|
type = "query"
|
|
|
|
|
|
|
|
|
|
query = '''
|
|
|
|
|
url.path:*
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[rule.filters]]
|
|
|
|
|
|
|
|
|
|
[rule.filters."$state"]
|
|
|
|
|
store = "appState"
|
|
|
|
|
[rule.filters.exists]
|
|
|
|
|
field = "user_agent.original"
|
|
|
|
|
[rule.filters.meta]
|
|
|
|
|
disabled = false
|
|
|
|
|
indexRefName = "kibanaSavedObjectMeta.searchSourceJSON.filter[0].meta.index"
|
|
|
|
|
key = "user_agent.original"
|
|
|
|
|
negate = true
|
|
|
|
|
type = "exists"
|
|
|
|
|
value = "exists"
|
|
|
|
|
|