release: version 1.1.9 - Source IP exclusion feature
FEATURE: - Add exclude_source_ips configuration option - Support single IPs and CIDR ranges (IPv4/IPv6) - Filter packets before TLS processing - New ipfilter package with unit tests - Log exclusion configuration at startup Packaging: - Update RPM spec to version 1.1.9 - Update changelog with feature details Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
@ -23,7 +23,7 @@ import (
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
// Version information (set via ldflags)
|
// Version information (set via ldflags)
|
||||||
Version = "1.1.8"
|
Version = "1.1.9"
|
||||||
BuildTime = "unknown"
|
BuildTime = "unknown"
|
||||||
GitCommit = "unknown"
|
GitCommit = "unknown"
|
||||||
)
|
)
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
%if %{defined build_version}
|
%if %{defined build_version}
|
||||||
%define spec_version %{build_version}
|
%define spec_version %{build_version}
|
||||||
%else
|
%else
|
||||||
%define spec_version 1.1.8
|
%define spec_version 1.1.9
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: ja4sentinel
|
Name: ja4sentinel
|
||||||
@ -123,6 +123,15 @@ fi
|
|||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|
||||||
|
* Wed Mar 04 2026 Jacquin Antoine <rpm@arkel.fr> - 1.1.9-1
|
||||||
|
- FEATURE: Add source IP exclusion with CIDR support
|
||||||
|
- New exclude_source_ips configuration option
|
||||||
|
- Support single IPs (192.168.1.1) and CIDR ranges (10.0.0.0/8)
|
||||||
|
- Filter packets before TLS processing to reduce load
|
||||||
|
- IPv4 and IPv6 support
|
||||||
|
- New ipfilter package with unit tests
|
||||||
|
- Log exclusion configuration at startup
|
||||||
|
|
||||||
* Wed Mar 04 2026 Jacquin Antoine <rpm@arkel.fr> - 1.1.8-1
|
* Wed Mar 04 2026 Jacquin Antoine <rpm@arkel.fr> - 1.1.8-1
|
||||||
- CRITICAL FIX: Resolve crash in TLS parser with nil decode context
|
- CRITICAL FIX: Resolve crash in TLS parser with nil decode context
|
||||||
- Use gopacket.NewPacket with LinkTypeIPv4/IPv6 instead of DecodeFromBytes
|
- Use gopacket.NewPacket with LinkTypeIPv4/IPv6 instead of DecodeFromBytes
|
||||||
|
|||||||
Reference in New Issue
Block a user