Skip to content

Commit

Permalink
Add new prebuilt security module
Browse files Browse the repository at this point in the history
  • Loading branch information
sodhikirti07 committed Oct 8, 2024
1 parent 2873cbc commit 4135920
Show file tree
Hide file tree
Showing 6 changed files with 187 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"icon": "logoSecurity"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"id": "security_host",
"title": "Security: Host",
"description": "Detect anomalous activity in your ECS-compatible host-based logs.",
"type": "Host data",
"logoFile": "logo.json",
"defaultIndexPattern": "auditbeat-*,logs-*,filebeat-*,winlogbeat-*",
"query": {
"bool": {
"filter": [
{
"exists": {
"field": "event.category"
}
},
{
"exists": {
"field": "host.name"
}
},
{
"exists": {
"field": "event.dataset"
}
},
{
"term": {
"event.outcome": "success"
}
}
],
"must_not": { "terms": { "_tier": ["data_frozen", "data_cold"] } }
}
},
"jobs": [
{
"id": "high_count_events_for_a_host_name",
"file": "high_count_events_for_a_host_name.json"
},
{
"id": "low_count_events_for_a_host_name",
"file": "low_count_events_for_a_host_name.json"
}
],
"datafeeds": [
{
"id": "datafeed-high_count_events_for_a_host_name",
"file": "datafeed_high_count_events_for_a_host_name.json",
"job_id": "high_count_events_for_a_host_name"
},
{
"id": "datafeed-low_count_events_for_a_host_name",
"file": "datafeed_low_count_events_for_a_host_name.json",
"job_id": "low_count_events_for_a_host_name"
}
],
"tags": [
"security"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"job_id": "JOB_ID",
"indices": [
"INDEX_PATTERN_NAME"
],
"max_empty_searches": 10,
"query": {
"bool": {
"filter": [
{
"exists": {
"field": "event.category"
}
},
{
"exists": {
"field": "host.name"
}
},
{
"exists": {
"field": "event.dataset"
}
},
{
"term": {
"event.outcome": "success"
}
}
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"job_id": "JOB_ID",
"indices": [
"INDEX_PATTERN_NAME"
],
"max_empty_searches": 10,
"query": {
"bool": {
"filter": [
{
"exists": {
"field": "event.category"
}
},
{
"exists": {
"field": "host.name"
}
},
{
"exists": {
"field": "event.dataset"
}
},
{
"term": {
"event.outcome": "success"
}
}
]
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"description": "Security: Host - Looks for a sudden spike in host based traffic. This can be due to a range of security issues, such as a compromised system, DDoS attacks, malware infections, privilege escalation, or data exfiltration.",
"groups": ["security", "host"],
"analysis_config": {
"bucket_span": "3h",
"detectors": [
{
"detector_description": "Detects high count of host based events.",
"function": "high_count",
"partition_field_name": "host.name",
"detector_index": 0
}
],
"influencers": ["host.name", "host.ip", "event.dataset", "event.action", "event.category"]
},
"allow_lazy_open": true,
"analysis_limits": {
"model_memory_limit": "128mb"
},
"data_description": {
"time_field": "@timestamp"
},
"custom_settings": {
"created_by": "ml-module-security-host",
"security_app_display_name": "Spike in the Host Traffic",
"managed": true,
"job_revision": 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"description": "Security: Host - Looks for a sudden drop in host based traffic. This can be due to a range of security issues, such as a compromised system, a failed service, or a network misconfiguration.",
"groups": ["security", "host"],
"analysis_config": {
"bucket_span": "3h",
"detectors": [
{
"detector_description": "Detects low count of host based events.",
"function": "low_count",
"partition_field_name": "host.name",
"detector_index": 0
}
],
"influencers": ["host.name", "host.ip", "event.dataset", "event.action", "event.category"]
},
"allow_lazy_open": true,
"analysis_limits": {
"model_memory_limit": "128mb"
},
"data_description": {
"time_field": "@timestamp"
},
"custom_settings": {
"created_by": "ml-module-security-host",
"security_app_display_name": "Decrease in the Host Traffic",
"managed": true,
"job_revision": 1
}
}

0 comments on commit 4135920

Please sign in to comment.