-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathversion.go
More file actions
44 lines (37 loc) · 2.14 KB
/
version.go
File metadata and controls
44 lines (37 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
File: version.go
Version: 1.317.0
Updated: 11-May-2026 16:38 CEST
Description:
Global version, build time, and build number constants for sdproxy.
Changes:
1.317.0 - [SECURITY/PERF] Eradicated a severe Lock Contention vulnerability natively
within the TCP/DoT multiplexer pool. Expired sockets are now strictly
accumulated and terminated OUTSIDE the Mutex boundaries (`takeStreamConn`).
Prevents malicious or stalled network interfaces from deadlocking the
global routing pipeline during teardown operations.
- [SECURITY/FIX] Resolved a Transparent Flattening anomaly during CNAME
spoofing. Incomplete upstream chains without terminal A/AAAA payloads
are now gracefully preserved and bridged natively to avoid artificial NODATA voids.
1.316.0 - [SECURITY/FIX] Addressed an asynchronous socket corruption race condition natively
within the TCP/DoT connection multiplexer. Terminated goroutines now strictly observe
atomic validation locks before forcefully closing pooled connections.
- [ROBUSTNESS/FIX] Corrected an ARP table wipeout regression where partial OS-level
descriptor streams permanently overwrote valid MAC assignments natively.
1.315.0 - [SECURITY/FIX] Hardened the `DoQ` (DNS over QUIC) connection multiplexer
with strict stream-level `ReadDeadlines`. Eradicates a severe
Resource Exhaustion (Goroutine Leak) vulnerability natively triggered
by malicious Slow-Read DoS attacks.
- [SECURITY/FIX] Applied native IPv6 Zone stripping (`.WithZone("")`) to the
Core Pipeline's Client IP extraction mechanics. Fortifies local network
routing, ACLs, and analytics against obfuscation via interface indexing.
*/
package main
var (
// BuildVersion represents the current release/build version of sdproxy.
BuildVersion string = "v1.317.0"
// BuildTime records the date and time the binary was compiled.
BuildTime string = "11-May-2026 16:38 CEST"
// BuildNumber is an internal sequential build tracker or CI pipeline number.
BuildNumber string = "373"
)