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.31
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 /
internal /
trace /
[ HOME SHELL ]
Name
Size
Permission
Action
testdata
[ DIR ]
drwxr-xr-x
gc.go
22.42
KB
-rw-r--r--
gc_test.go
5.41
KB
-rw-r--r--
goroutines.go
8.72
KB
-rw-r--r--
mkcanned.bash
761
B
-rwxr-xr-x
mud.go
5.71
KB
-rw-r--r--
mud_test.go
2.18
KB
-rw-r--r--
order.go
7.27
KB
-rw-r--r--
parser.go
35.3
KB
-rw-r--r--
parser_test.go
2.86
KB
-rw-r--r--
writer.go
854
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : writer.go
package trace import "bytes" // Writer is a test trace writer. type Writer struct { bytes.Buffer } func NewWriter() *Writer { w := new(Writer) w.Write([]byte("go 1.9 trace\x00\x00\x00\x00")) return w } // Emit writes an event record to the trace. // See Event types for valid types and required arguments. func (w *Writer) Emit(typ byte, args ...uint64) { nargs := byte(len(args)) - 1 if nargs > 3 { nargs = 3 } buf := []byte{typ | nargs<<6} if nargs == 3 { buf = append(buf, 0) } for _, a := range args { buf = appendVarint(buf, a) } if nargs == 3 { buf[1] = byte(len(buf) - 2) } n, err := w.Write(buf) if n != len(buf) || err != nil { panic("failed to write") } } func appendVarint(buf []byte, v uint64) []byte { for ; v >= 0x80; v >>= 7 { buf = append(buf, 0x80|byte(v)) } buf = append(buf, byte(v)) return buf }
Close