Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.1
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
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.go
643
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fuzz.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. // +build gofuzz package html import ( "fmt" ) func Fuzz(data []byte) int { v := string(data) e := EscapeString(v) u := UnescapeString(e) if v != u { fmt.Printf("v = %q\n", v) fmt.Printf("e = %q\n", e) fmt.Printf("u = %q\n", u) panic("not equal") } // 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)) return 0 }
Close