2020-09-30 18:34:38 -05:00
[ metadata ]
creation_date = "2020/08/11"
2023-01-04 09:30:07 -05:00
integration = [ "endpoint" ]
2020-09-30 18:34:38 -05:00
maturity = "production"
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"
2023-01-04 09:30:07 -05:00
updated_date = "2022/12/14"
2020-09-30 18:34:38 -05:00
[ rule ]
author = [ "Elastic" ]
description = "" "
2020-10-26 13:50:45 -05:00
Identifies Elasticsearch nodes that do not have Transport Layer Security (TLS), and/or lack authentication, and are
accepting inbound network connections over the default Elasticsearch port.
2020-09-30 18:34:38 -05:00
" ""
false_positives = [
"" "
If you have front-facing proxies that provide authentication and TLS, this rule would need to be tuned to eliminate
the source IP address of your reverse-proxy.
" "" ,
]
2021-07-21 01:59:22 -05:00
from = "now-9m"
index = [ "auditbeat-*" , "filebeat-*" , "packetbeat-*" , "logs-endpoint.events.*" ]
2020-09-30 18:34:38 -05:00
language = "lucene"
2021-03-03 22:12:11 -09:00
license = "Elastic License v2"
2020-09-30 18:34:38 -05:00
name = "Inbound Connection to an Unsecure Elasticsearch Node"
2022-07-18 15:41:32 -04:00
note = "" "## Setup
2021-05-10 13:40:56 -08:00
This rule requires the addition of port `9200` and `send_all_headers` to the `HTTP` protocol configuration in `packetbeat.yml`. See the References section for additional configuration documentation." ""
2020-09-30 18:34:38 -05:00
references = [
"https://www.elastic.co/guide/en/elasticsearch/reference/current/configuring-security.html" ,
"https://www.elastic.co/guide/en/beats/packetbeat/current/packetbeat-http-options.html#_send_all_headers" ,
]
risk_score = 47
rule_id = "31295df3-277b-4c56-a1fb-84e31b4222a9"
severity = "medium"
2021-07-21 01:59:22 -05:00
tags = [ "Elastic" , "Network" , "Threat Detection" , "Initial Access" , "Host" ]
2021-02-16 10:52:48 -09:00
timestamp_override = "event.ingested"
2020-09-30 18:34:38 -05:00
type = "query"
query = '' '
event.category:network_traffic AND network.protocol:http AND status:OK AND destination.port:9200 AND network.direction:inbound AND NOT http.response.headers.content-type:"image/x-icon" AND NOT _exists_:http.request.headers.authorization
' ''
[ [ rule . threat ] ]
framework = "MITRE ATT&CK"
[ [ rule . threat . technique ] ]
2021-07-21 01:59:22 -05:00
id = "T1190"
2023-01-04 09:30:07 -05:00
name = "Exploit Public-Facing Application"
reference = "https://attack.mitre.org/techniques/T1190/"
2020-09-30 18:34:38 -05:00
[ rule . threat . tactic ]
2021-07-21 01:59:22 -05:00
id = "TA0001"
2023-01-04 09:30:07 -05:00
name = "Initial Access"
reference = "https://attack.mitre.org/tactics/TA0001/"