Skip to content
Discussion options

You must be logged in to vote

You could work out an update by query in Dev Tools and target them something like (just an example IP and port, change them):

POST logs-suricata.alerts-so/_update_by_query
{
  "query": {
    "bool": {
       "must": [
        { "term": { "destination.ip": "192.168.10.101" } },
        { "term": { "destination.port": 445 } }
          
        ],
      "must_not": [
        {
          "term": {
            "event.acknowledged": true
          }
        }
      ]
    }
  },
    "script": {
    "source": "ctx._source.event.acknowledged = true",
    "lang": "painless"
    } 
}

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@OrangeCat201
Comment options

@cm-ops
Comment options

Answer selected by OrangeCat201
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants