Skip to content

Commit 16a5c24

Browse files
[SIEM][Detection Engine] Final final rule changes (#56806)
## Summary * Final, final, Rule changes ### Checklist Use ~~strikethroughs~~ to remove checklist items you don't feel are applicable to this PR. ~~- [ ] This was checked for cross-browser compatibility, [including a check against IE11](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility)~~ ~~- [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md)~~ ~~- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation) was added for features that require explanation or tutorials~~ ~~- [ ] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility) were updated or added to match the most common scenarios~~ ~~- [ ] This was checked for [keyboard-only and screenreader accessibility](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Cross_browser_testing/Accessibility#Accessibility_testing_checklist)~~ ### For maintainers ~~- [ ] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process)~~ ~~- [ ] This includes a feature addition or change that requires a release note and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process)~~
1 parent 1d328a6 commit 16a5c24

File tree

115 files changed

+312
-1094
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+312
-1094
lines changed

NOTICE.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,6 @@ which is available under a "MIT" license. The files based on this license are:
162162
- windows_priv_escalation_via_accessibility_features.json
163163
- windows_persistence_via_application_shimming.json
164164
- windows_execution_via_trusted_developer_utilities.json
165-
- windows_execution_via_net_com_assemblies.json
166-
- windows_execution_via_connection_manager.json
167165

168166
MIT License
169167

x-pack/legacy/plugins/siem/server/lib/detection_engine/rules/prepackaged_rules/403_response_to_a_post.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"description": "A POST request to web application returned a 403 response which indicates the web application declined to process the request because the action requested was disallowed.",
2+
"description": "A POST request to web application returned a 403 response, which indicates the web application declined to process the request because the action requested was not allowed",
33
"false_positives": [
4-
"Security scans and tests may result in these errors. Misconfigured or buggy applications may produce large numbers of these errors. If the source is unexpected, or the user is unauthorized, or the request is unusual, these may be suspicious or malicious activity."
4+
"Security scans and tests may result in these errors. Misconfigured or buggy applications may produce large numbers of these errors. If the source is unexpected, the user unauthorized, or the request unusual, these may indicate suspicious or malicious activity."
55
],
66
"index": [
77
"apm-*-transaction*"
88
],
99
"language": "kuery",
10-
"max_signals": 33,
10+
"max_signals": 100,
1111
"name": "Web Application Suspicious Activity: POST Request Declined",
1212
"query": "http.response.status_code:403 and http.request.method:post",
1313
"references": [

x-pack/legacy/plugins/siem/server/lib/detection_engine/rules/prepackaged_rules/405_response_method_not_allowed.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"description": "A request to web application returned a 405 response which indicates the web application declined to process the request because the HTTP method was not allowed for the resource.",
2+
"description": "A request to web application returned a 405 response which indicates the web application declined to process the request because the HTTP method is not allowed for the resource",
33
"false_positives": [
4-
"Security scans and tests may result in these errors. Misconfigured or buggy applications may produce large numbers of these errors. If the source is unexpected, or the user is unauthorized, or the request is unusual, these may be suspicious or malicious activity."
4+
"Security scans and tests may result in these errors. Misconfigured or buggy applications may produce large numbers of these errors. If the source is unexpected, the user unauthorized, or the request unusual, these may indicate suspicious or malicious activity."
55
],
66
"index": [
77
"apm-*-transaction*"
88
],
99
"language": "kuery",
10-
"max_signals": 33,
10+
"max_signals": 100,
1111
"name": "Web Application Suspicious Activity: Unauthorized Method",
1212
"query": "http.response.status_code:405",
1313
"references": [

x-pack/legacy/plugins/siem/server/lib/detection_engine/rules/prepackaged_rules/elastic_endpoint_security_adversary_behavior_detected.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
2-
"description": "Elastic Endpoint Security Alert - Adversary behavior detected.",
2+
"description": "Elastic Endpoint detected an Adversary Behavior. Click the Elastic Endpoint icon in the event.module column or the link in the rule.reference column in the External Alerts tab of the SIEM Detections page for additional information.",
3+
"from": "now-660s",
34
"index": [
45
"endgame-*"
56
],
7+
"interval": "10m",
68
"language": "kuery",
7-
"max_signals": 33,
9+
"max_signals": 100,
810
"name": "Adversary Behavior - Detected - Elastic Endpoint",
911
"query": "event.kind:alert and event.module:endgame and event.action:rules_engine_event",
1012
"risk_score": 47,

x-pack/legacy/plugins/siem/server/lib/detection_engine/rules/prepackaged_rules/elastic_endpoint_security_cred_dumping_detected.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{
2-
"description": "Elastic Endpoint Security Alert - Credential dumping detected.",
2+
"description": "Elastic Endpoint detected Credential Dumping. Click the Elastic Endpoint icon in the event.module column or the link in the rule.reference column in the External Alerts tab of the SIEM Detections page for additional information.",
3+
"from": "now-660s",
34
"index": [
45
"endgame-*"
56
],
7+
"interval": "10m",
68
"language": "kuery",
7-
"max_signals": 33,
8-
"name": "Cred Dumping - Detected - Elastic Endpoint",
9+
"max_signals": 100,
10+
"name": "Credential Dumping - Detected - Elastic Endpoint",
911
"query": "event.kind:alert and event.module:endgame and event.action:cred_theft_event and endgame.metadata.type:detection",
1012
"risk_score": 73,
1113
"rule_id": "571afc56-5ed9-465d-a2a9-045f099f6e7e",

x-pack/legacy/plugins/siem/server/lib/detection_engine/rules/prepackaged_rules/elastic_endpoint_security_cred_dumping_prevented.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{
2-
"description": "Elastic Endpoint Security Alert - Credential dumping prevented.",
2+
"description": "Elastic Endpoint prevented Credential Dumping. Click the Elastic Endpoint icon in the event.module column or the link in the rule.reference column in the External Alerts tab of the SIEM Detections page for additional information.",
3+
"from": "now-660s",
34
"index": [
45
"endgame-*"
56
],
7+
"interval": "10m",
68
"language": "kuery",
7-
"max_signals": 33,
8-
"name": "Cred Dumping - Prevented - Elastic Endpoint",
9+
"max_signals": 100,
10+
"name": "Credential Dumping - Prevented - Elastic Endpoint",
911
"query": "event.kind:alert and event.module:endgame and event.action:cred_theft_event and endgame.metadata.type:prevention",
1012
"risk_score": 47,
1113
"rule_id": "db8c33a8-03cd-4988-9e2c-d0a4863adb13",

x-pack/legacy/plugins/siem/server/lib/detection_engine/rules/prepackaged_rules/elastic_endpoint_security_cred_manipulation_detected.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
{
2-
"description": "Elastic Endpoint Security Alert - Credential manipulation detected.",
2+
"description": "Elastic Endpoint detected Credential Manipulation. Click the Elastic Endpoint icon in the event.module column or the link in the rule.reference column in the External Alerts tab of the SIEM Detections page for additional information.",
3+
"from": "now-660s",
34
"index": [
45
"endgame-*"
56
],
7+
"interval": "10m",
68
"language": "kuery",
7-
"max_signals": 33,
8-
"name": "Cred Manipulation - Detected - Elastic Endpoint",
9+
"max_signals": 100,
10+
"name": "Credential Manipulation - Detected - Elastic Endpoint",
911
"query": "event.kind:alert and event.module:endgame and event.action:token_manipulation_event and endgame.metadata.type:detection",
1012
"risk_score": 73,
1113
"rule_id": "c0be5f31-e180-48ed-aa08-96b36899d48f",

x-pack/legacy/plugins/siem/server/lib/detection_engine/rules/prepackaged_rules/elastic_endpoint_security_cred_manipulation_prevented.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
{
2-
"description": "Elastic Endpoint Security Alert - Credential manipulation prevented.",
2+
"description": "Elastic Endpoint prevented Credential Manipulation. Click the Elastic Endpoint icon in the event.module column or the link in the rule.reference column in the External Alerts tab of the SIEM Detections page for additional information.",
3+
"from": "now-660s",
34
"index": [
45
"endgame-*"
56
],
7+
"interval": "10m",
68
"language": "kuery",
7-
"max_signals": 33,
8-
"name": "Cred Manipulation - Prevented - Elastic Endpoint",
9+
"max_signals": 100,
10+
"name": "Credential Manipulation - Prevented - Elastic Endpoint",
911
"query": "event.kind:alert and event.module:endgame and event.action:token_manipulation_event and endgame.metadata.type:prevention",
1012
"risk_score": 47,
1113
"rule_id": "c9e38e64-3f4c-4bf3-ad48-0e61a60ea1fa",
1214
"severity": "medium",
1315
"tags": [
14-
"Elastic"
16+
"Elastic",
17+
"Endpoint"
1518
],
1619
"type": "query",
1720
"version": 1

x-pack/legacy/plugins/siem/server/lib/detection_engine/rules/prepackaged_rules/elastic_endpoint_security_exploit_detected.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
2-
"description": "Elastic Endpoint Security Alert - Exploit detected.",
2+
"description": "Elastic Endpoint detected an Exploit. Click the Elastic Endpoint icon in the event.module column or the link in the rule.reference column in the External Alerts tab of the SIEM Detections page for additional information.",
3+
"from": "now-660s",
34
"index": [
45
"endgame-*"
56
],
7+
"interval": "10m",
68
"language": "kuery",
7-
"max_signals": 33,
9+
"max_signals": 100,
810
"name": "Exploit - Detected - Elastic Endpoint",
911
"query": "event.kind:alert and event.module:endgame and event.action:exploit_event and endgame.metadata.type:detection",
1012
"risk_score": 73,

x-pack/legacy/plugins/siem/server/lib/detection_engine/rules/prepackaged_rules/elastic_endpoint_security_exploit_prevented.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
2-
"description": "Elastic Endpoint Security Alert - Exploit prevented.",
2+
"description": "Elastic Endpoint prevented an Exploit. Click the Elastic Endpoint icon in the event.module column or the link in the rule.reference column in the External Alerts tab of the SIEM Detections page for additional information.",
3+
"from": "now-660s",
34
"index": [
45
"endgame-*"
56
],
7+
"interval": "10m",
68
"language": "kuery",
7-
"max_signals": 33,
9+
"max_signals": 100,
810
"name": "Exploit - Prevented - Elastic Endpoint",
911
"query": "event.kind:alert and event.module:endgame and event.action:exploit_event and endgame.metadata.type:prevention",
1012
"risk_score": 47,

0 commit comments

Comments
 (0)