release: version 1.1.8 - Critical parser crash fix
Some checks failed
Build RPM Package / Build RPM Packages (CentOS 7, Rocky 8/9/10) (push) Has been cancelled
Some checks failed
Build RPM Package / Build RPM Packages (CentOS 7, Rocky 8/9/10) (push) Has been cancelled
CRITICAL FIX: - Resolve crash in TLS parser with nil decode context - Use gopacket.NewPacket with LinkTypeIPv4/IPv6 - Fixes panic: runtime error: invalid memory address or nil pointer dereference - Properly handles raw IP packets after SLL header stripping Packaging: - Update RPM spec to version 1.1.8 - Update changelog with crash fix details Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com> Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
@ -22,7 +22,7 @@ import (
|
|||||||
|
|
||||||
var (
|
var (
|
||||||
// Version information (set via ldflags)
|
// Version information (set via ldflags)
|
||||||
Version = "1.1.7"
|
Version = "1.1.8"
|
||||||
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.7
|
%define spec_version 1.1.8
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: ja4sentinel
|
Name: ja4sentinel
|
||||||
@ -123,6 +123,12 @@ fi
|
|||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
|
||||||
|
* Wed Mar 04 2026 Jacquin Antoine <rpm@arkel.fr> - 1.1.8-1
|
||||||
|
- CRITICAL FIX: Resolve crash in TLS parser with nil decode context
|
||||||
|
- Use gopacket.NewPacket with LinkTypeIPv4/IPv6 instead of DecodeFromBytes
|
||||||
|
- Fixes panic: runtime error: invalid memory address or nil pointer dereference
|
||||||
|
- Properly handles raw IP packets after SLL header stripping
|
||||||
|
|
||||||
* Wed Mar 04 2026 Jacquin Antoine <rpm@arkel.fr> - 1.1.7-1
|
* Wed Mar 04 2026 Jacquin Antoine <rpm@arkel.fr> - 1.1.7-1
|
||||||
- FIX: Improve error logging with source/destination details
|
- FIX: Improve error logging with source/destination details
|
||||||
- Add src_ip, src_port, dst_ip, dst_port to tlsparse error logs
|
- Add src_ip, src_port, dst_ip, dst_port to tlsparse error logs
|
||||||
|
|||||||
Reference in New Issue
Block a user