2020-06-29 22:57:00 -06:00
|
|
|
[metadata]
|
|
|
|
|
creation_date = "2020/02/18"
|
|
|
|
|
maturity = "production"
|
2021-03-03 22:12:11 -09:00
|
|
|
updated_date = "2021/03/03"
|
2020-06-29 22:57:00 -06:00
|
|
|
|
|
|
|
|
[rule]
|
|
|
|
|
author = ["Elastic"]
|
|
|
|
|
description = """
|
|
|
|
|
Nping ran on a Linux host. Nping is part of the Nmap tool suite and has the ability to construct raw packets for a wide
|
|
|
|
|
variety of security testing applications, including denial of service testing.
|
|
|
|
|
"""
|
|
|
|
|
false_positives = [
|
|
|
|
|
"""
|
|
|
|
|
Some normal use of this command may originate from security engineers and network or server administrators, but this
|
|
|
|
|
is usually not routine or unannounced. Use of `Nping` by non-engineers or ordinary users is uncommon.
|
|
|
|
|
""",
|
|
|
|
|
]
|
2020-08-21 12:23:43 -05:00
|
|
|
from = "now-9m"
|
2020-08-03 15:46:57 -04:00
|
|
|
index = ["auditbeat-*", "logs-endpoint.events.*"]
|
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 = "Nping Process Activity"
|
|
|
|
|
references = ["https://en.wikipedia.org/wiki/Nmap"]
|
|
|
|
|
risk_score = 47
|
|
|
|
|
rule_id = "0d69150b-96f8-467c-a86d-a67a3378ce77"
|
|
|
|
|
severity = "medium"
|
2020-10-26 13:50:45 -05:00
|
|
|
tags = ["Elastic", "Host", "Linux", "Threat Detection"]
|
2021-02-16 10:52:48 -09:00
|
|
|
timestamp_override = "event.ingested"
|
2020-06-29 22:57:00 -06:00
|
|
|
type = "query"
|
|
|
|
|
|
|
|
|
|
query = '''
|
2020-07-07 13:43:33 -05:00
|
|
|
event.category:process and event.type:(start or process_started) and process.name:nping
|
2020-06-29 22:57:00 -06:00
|
|
|
'''
|
|
|
|
|
|