You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when found (example AWErWiwwJTWaHXxRk2AF) download it curl 'http://127.0.0.1:9200/the_hive_12/audit/AWErWiwwJTWaHXxRk2AF' -o /tmp/big_audit.json
check size du -h big_audit.json 68M big_audit.json
If try to open will see a very big single row.
This issue will cause the fault during migration (happened from the_hive_11 to the_hive_12) and growing of ES with not useful data:
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size yellow open the_hive_12 a1Hn_YUATjSi9m1qKhdVXQ 5 1 105692269 3628968 10.8gb 10.8gb
The text was updated successfully, but these errors were encountered:
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size yellow open the_hive_12 a1Hn_YUATjSi9m1qKhdVXQ 5 1 151825871 2759162 14.3gb 14.3gb
Not many alerts arrived (like 50).
Issue is in audit log, not in alert volume.
The enabled feed contains ~50k domain/ip that are updated regularly.
This feed is set as fixed event and its attributes are changing (ip/domains are added/removed )
So no new alert in the hive is coming because this feed. And this alert is set as "ignored", so no idea why is causing the growth of audit log...
Request Type
Issue
Problem Description
The Hive when connected with a MISP instance with public feeds enabled (ex. alienvault) causes an immense ES audit growth.
Steps to Reproduce
Enable Feeds on MISP
Configure The Hive to sync with MISP
After a while check audit docs in Elasticsearch
Complementary information
Configure feed in MISP:
command to discover the biggest doc in ES audit:
curl -XPOST http://127.0.0.1:9200/the_hive_12/audit/_search -d ' { "size": 1, "_source": "_id", "query": { "match_all": {} }, "sort": { "_script": { "script": { "lang": "groovy", "source": "_source.toString().length()" }, "type": "number", "order": "desc" } } }'
when found (example AWErWiwwJTWaHXxRk2AF) download it
curl 'http://127.0.0.1:9200/the_hive_12/audit/AWErWiwwJTWaHXxRk2AF' -o /tmp/big_audit.json
check size
du -h big_audit.json
68M big_audit.json
If try to open will see a very big single row.
This issue will cause the fault during migration (happened from the_hive_11 to the_hive_12) and growing of ES with not useful data:
curl 'http://localhost:9200/_cat/indices/*?v&s=index'
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size yellow open the_hive_12 a1Hn_YUATjSi9m1qKhdVXQ 5 1 105692269 3628968 10.8gb 10.8gb
The text was updated successfully, but these errors were encountered: