Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# UTMStack 10.8.4 Release Notes
# UTMStack 10.8.5 Release Notes

- Enhanced security and compliance by upgrading several internal components—most notably the update server—to exclusively support TLS 1.3.
- Expanded the exclusion dictionary for malicious IP connection logs to reduce false positives.
- Automatically close alerts with SOC-AI when the feature is enabled.
9 changes: 6 additions & 3 deletions correlation/ti/ti.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
package ti

import (
"github.com/tidwall/gjson"
"github.com/utmstack/UTMStack/correlation/correlation"
"github.com/utmstack/UTMStack/correlation/utils"
"net"
"runtime"
"strings"
"sync"
"time"

"github.com/tidwall/gjson"
"github.com/utmstack/UTMStack/correlation/correlation"
"github.com/utmstack/UTMStack/correlation/utils"
)

type Cache map[string]bool
Expand All @@ -35,6 +36,8 @@ func blocked(log string) bool {
"drop",
"reject",
"deny",
"timeout",
"closed",
}

for _, e := range exclusionList {
Expand Down
2 changes: 1 addition & 1 deletion version.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 10.8.4
version: 10.8.5
Loading