mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
Disable escalate button if thehive is not enabled
This commit is contained in:
@@ -28,15 +28,17 @@
|
|||||||
"password": "",
|
"password": "",
|
||||||
"verifyCert": false
|
"verifyCert": false
|
||||||
},
|
},
|
||||||
"statickeyauth": {
|
{% if THEHIVEKEY != '' %}
|
||||||
"anonymousCidr": "172.17.0.0/24",
|
|
||||||
"apiKey": "{{ SENSORONIKEY }}"
|
|
||||||
},
|
|
||||||
"thehive": {
|
"thehive": {
|
||||||
"hostUrl": "http://{{ MANAGERIP }}:9000/thehive",
|
"hostUrl": "http://{{ MANAGERIP }}:9000/thehive",
|
||||||
"key": "{{ THEHIVEKEY }}",
|
"key": "{{ THEHIVEKEY }}",
|
||||||
"verifyCert": false
|
"verifyCert": false
|
||||||
}
|
}
|
||||||
|
{% endif %}
|
||||||
|
"statickeyauth": {
|
||||||
|
"anonymousCidr": "172.17.0.0/24",
|
||||||
|
"apiKey": "{{ SENSORONIKEY }}"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"client": {
|
"client": {
|
||||||
"hunt": {
|
"hunt": {
|
||||||
@@ -49,7 +51,7 @@
|
|||||||
"relativeTimeUnit": 30,
|
"relativeTimeUnit": 30,
|
||||||
"mostRecentlyUsedLimit": 5,
|
"mostRecentlyUsedLimit": 5,
|
||||||
"dismissEnabled": false,
|
"dismissEnabled": false,
|
||||||
"escalateEnabled": true,
|
"escalateEnabled": {{ 'true' if THEHIVEKEY != '' else 'false' }},
|
||||||
"eventFields": {{ hunt_eventfields | json }},
|
"eventFields": {{ hunt_eventfields | json }},
|
||||||
"queryBaseFilter": "",
|
"queryBaseFilter": "",
|
||||||
"queryToggleFilters": [],
|
"queryToggleFilters": [],
|
||||||
@@ -66,7 +68,7 @@
|
|||||||
"relativeTimeUnit": 30,
|
"relativeTimeUnit": 30,
|
||||||
"mostRecentlyUsedLimit": 5,
|
"mostRecentlyUsedLimit": 5,
|
||||||
"dismissEnabled": true,
|
"dismissEnabled": true,
|
||||||
"escalateEnabled": true,
|
"escalateEnabled": {{ 'true' if THEHIVEKEY != '' else 'false' }},
|
||||||
"eventFields": {{ alerts_eventfields | json }},
|
"eventFields": {{ alerts_eventfields | json }},
|
||||||
"queryBaseFilter": "event.dataset:alert",
|
"queryBaseFilter": "event.dataset:alert",
|
||||||
"queryToggleFilters": [
|
"queryToggleFilters": [
|
||||||
|
|||||||
Reference in New Issue
Block a user