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 : trie.go
// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. // 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. package idna // Sparse block handling code. type valueRange struct { value uint16 // header: value:stride lo, hi byte // header: lo:n } type sparseBlocks struct { values []valueRange offset []uint16 } var idnaSparse = sparseBlocks{ values: idnaSparseValues[:], offset: idnaSparseOffset[:], } // Don't use newIdnaTrie to avoid unconditional linking in of the table. var trie = &idnaTrie{} // lookup determines the type of block n and looks up the value for b. // For n < t.cutoff, the block is a simple lookup table. Otherwise, the block // is a list of ranges with an accompanying value. Given a matching range r, // the value for b is by r.value + (b - r.lo) * stride. func (t *sparseBlocks) lookup(n uint32, b byte) uint16 { offset := t.offset[n] header := t.values[offset] lo := offset + 1 hi := lo + uint16(header.lo) for lo < hi { m := lo + (hi-lo)/2 r := t.values[m] if r.lo <= b && b <= r.hi { return r.value + uint16(b-r.lo)*header.value } if b < r.lo { hi = m } else { lo = m + 1 } } return 0 }
Close