Skip to content

Commit 6c734d3

Browse files
Kbayerojavjodarmjabascal10
authored
Release/v10.8.5 (#1283)
* increase blocklist for maliciuos ip alert * Update version and changelog * trigger actions * replace npm install with npm ci for consistent dependency installation * replace npm ci with npm install in Docker frontend build process --------- Co-authored-by: Jose Angel Sanchez Velazquez <sanchezvelazquezjoseangel@gmail.com> Co-authored-by: Manuel Abascal <mjabascal10@gmail.com>
1 parent f7c1e80 commit 6c734d3

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
# UTMStack 10.8.4 Release Notes
1+
# UTMStack 10.8.5 Release Notes
22

3-
- Enhanced security and compliance by upgrading several internal components—most notably the update server—to exclusively support TLS 1.3.
3+
- Expanded the exclusion dictionary for malicious IP connection logs to reduce false positives.
4+
- Automatically close alerts with SOC-AI when the feature is enabled.

correlation/ti/ti.go

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
package ti
22

33
import (
4-
"github.com/tidwall/gjson"
5-
"github.com/utmstack/UTMStack/correlation/correlation"
6-
"github.com/utmstack/UTMStack/correlation/utils"
74
"net"
85
"runtime"
96
"strings"
107
"sync"
118
"time"
9+
10+
"github.com/tidwall/gjson"
11+
"github.com/utmstack/UTMStack/correlation/correlation"
12+
"github.com/utmstack/UTMStack/correlation/utils"
1213
)
1314

1415
type Cache map[string]bool
@@ -35,6 +36,8 @@ func blocked(log string) bool {
3536
"drop",
3637
"reject",
3738
"deny",
39+
"timeout",
40+
"closed",
3841
}
3942

4043
for _, e := range exclusionList {

version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 10.8.4
1+
version: 10.8.5

0 commit comments

Comments
 (0)