FIXED:
* Better request tracking through flow

ADDED:
* Cross-check detection
This commit is contained in:
brent saner
2025-12-17 19:21:07 -05:00
parent 9f97fcaf81
commit 1a4549ea72
7 changed files with 73 additions and 40 deletions

View File

@@ -2,9 +2,9 @@ package server
import (
`fmt`
`html/template`
`net/netip`
`strings`
`html/template`
)
func getIpver(a netip.Addr) (verStr string) {
@@ -33,6 +33,6 @@ func getTitle(subPage string) (title string) {
func safeUrl(urlStr string) (u template.URL) {
u = template.URL(urlStr)
return
}