Linux id-dci-web1980.main-hosting.eu 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
: 153.92.8.146 | : 216.73.217.130
Cant Read [ /etc/named.conf ]
8.3.30
u610877233
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
golang /
1.22.0 /
src /
go /
version /
[ HOME SHELL ]
Name
Size
Permission
Action
version.go
1.92
KB
-rw-r--r--
version_test.go
2.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : version.go
// Copyright 2023 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package version provides operations on [Go versions] // in [Go toolchain name syntax]: strings like // "go1.20", "go1.21.0", "go1.22rc2", and "go1.23.4-bigcorp". // // [Go versions]: https://go.dev/doc/toolchain#version // [Go toolchain name syntax]: https://go.dev/doc/toolchain#name package version // import "go/version" import ( "internal/gover" "strings" ) // stripGo converts from a "go1.21-bigcorp" version to a "1.21" version. // If v does not start with "go", stripGo returns the empty string (a known invalid version). func stripGo(v string) string { v, _, _ = strings.Cut(v, "-") // strip -bigcorp suffix. if len(v) < 2 || v[:2] != "go" { return "" } return v[2:] } // Lang returns the Go language version for version x. // If x is not a valid version, Lang returns the empty string. // For example: // // Lang("go1.21rc2") = "go1.21" // Lang("go1.21.2") = "go1.21" // Lang("go1.21") = "go1.21" // Lang("go1") = "go1" // Lang("bad") = "" // Lang("1.21") = "" func Lang(x string) string { v := gover.Lang(stripGo(x)) if v == "" { return "" } if strings.HasPrefix(x[2:], v) { return x[:2+len(v)] // "go"+v without allocation } else { return "go" + v } } // Compare returns -1, 0, or +1 depending on whether // x < y, x == y, or x > y, interpreted as Go versions. // The versions x and y must begin with a "go" prefix: "go1.21" not "1.21". // Invalid versions, including the empty string, compare less than // valid versions and equal to each other. // The language version "go1.21" compares less than the // release candidate and eventual releases "go1.21rc1" and "go1.21.0". func Compare(x, y string) int { return gover.Compare(stripGo(x), stripGo(y)) } // IsValid reports whether the version x is valid. func IsValid(x string) bool { return gover.IsValid(stripGo(x)) }
Close