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.216.186
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 /
html /
[ HOME SHELL ]
Name
Size
Permission
Action
template
[ DIR ]
drwxr-xr-x
entity.go
114.29
KB
-rw-r--r--
entity_test.go
1.14
KB
-rw-r--r--
escape.go
5.04
KB
-rw-r--r--
escape_test.go
3.26
KB
-rw-r--r--
example_test.go
619
B
-rw-r--r--
fuzz_test.go
636
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fuzz_test.go
// Copyright 2019 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 html import "testing" func FuzzEscapeUnescape(f *testing.F) { f.Fuzz(func(t *testing.T, v string) { e := EscapeString(v) u := UnescapeString(e) if u != v { t.Errorf("EscapeString(%q) = %q, UnescapeString(%q) = %q, want %q", v, e, e, u, v) } // As per the documentation, this isn't always equal to v, so it makes // no sense to check for equality. It can still be interesting to find // panics in it though. EscapeString(UnescapeString(v)) }) }
Close