mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-24 11:57:15 +00:00
81fcacab11
Go 1.27.0 shipped on 2026-08-19. Raise the go directive and the builder image so Docker and release builds pick it up; every CI job already reads the version from go.mod, and golangci-lint v2.13.1 release binaries are themselves built with go1.27.0, so the lint job needs no pin change.
43 lines
897 B
Go
43 lines
897 B
Go
package pia
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"net"
|
|
"strings"
|
|
"unicode"
|
|
)
|
|
|
|
func validSecret(value []byte, min, max int) bool {
|
|
if len(value) < min || len(value) > max {
|
|
return false
|
|
}
|
|
for _, b := range value {
|
|
if b == 0 || b == '\r' || b == '\n' {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func validHostname(host string) bool {
|
|
if host == "" || len(host) > 253 || net.ParseIP(host) != nil || strings.HasSuffix(host, ".") {
|
|
return false
|
|
}
|
|
for label := range strings.SplitSeq(host, ".") {
|
|
if label == "" || len(label) > 63 || label[0] == '-' || label[len(label)-1] == '-' {
|
|
return false
|
|
}
|
|
for _, r := range label {
|
|
if r > unicode.MaxASCII || (!unicode.IsLetter(r) && !unicode.IsDigit(r) && r != '-') {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func validWGKey(key string) bool {
|
|
decoded, err := base64.StdEncoding.DecodeString(key)
|
|
return err == nil && len(decoded) == 32
|
|
}
|