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 /
cmd /
go /
testdata /
[ HOME SHELL ]
Name
Size
Permission
Action
failssh
[ DIR ]
drwxr-xr-x
generate
[ DIR ]
drwxr-xr-x
mod
[ DIR ]
drwxr-xr-x
modlegacy
[ DIR ]
drwxr-xr-x
norunexample
[ DIR ]
drwxr-xr-x
rundir
[ DIR ]
drwxr-xr-x
script
[ DIR ]
drwxr-xr-x
shadow
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
testcover
[ DIR ]
drwxr-xr-x
testimport
[ DIR ]
drwxr-xr-x
testinternal
[ DIR ]
drwxr-xr-x
testinternal2
[ DIR ]
drwxr-xr-x
testinternal3
[ DIR ]
drwxr-xr-x
testinternal4
[ DIR ]
drwxr-xr-x
testonly
[ DIR ]
drwxr-xr-x
testonly2
[ DIR ]
drwxr-xr-x
testterminal18153
[ DIR ]
drwxr-xr-x
testvendor
[ DIR ]
drwxr-xr-x
testvendor2
[ DIR ]
drwxr-xr-x
addmod.go
3.52
KB
-rw-r--r--
example1_test.go
394
B
-rw-r--r--
example2_test.go
383
B
-rw-r--r--
print_goroot.go
251
B
-rw-r--r--
savedir.go
1.5
KB
-rw-r--r--
standalone_benchmark_test.go
81
B
-rw-r--r--
standalone_fail_sub_test.go
136
B
-rw-r--r--
standalone_main_normal_test.go
247
B
-rw-r--r--
standalone_main_wrong_test.go
249
B
-rw-r--r--
standalone_parallel_sub_test.g...
296
B
-rw-r--r--
standalone_sub_test.go
112
B
-rw-r--r--
standalone_test.go
71
B
-rw-r--r--
standalone_testmain_flag_test....
606
B
-rw-r--r--
timeoutbench_test.go
127
B
-rw-r--r--
vendormod.txt
2.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vendormod.txt
generated by: go run savedir.go vendormod -- a/foo/AUTHORS.txt -- -- a/foo/CONTRIBUTORS -- -- a/foo/LICENSE -- -- a/foo/PATENTS -- -- a/foo/COPYING -- -- a/foo/COPYLEFT -- -- a/foo/licensed-to-kill -- -- w/LICENSE -- -- x/NOTICE! -- -- x/x2/LICENSE -- -- mypkg/LICENSE.txt -- -- a/foo/bar/b/main.go -- package b -- a/foo/bar/b/main_test.go -- package b import ( "os" "testing" ) func TestDir(t *testing.T) { if _, err := os.Stat("../testdata/1"); err != nil { t.Fatalf("testdata: %v", err) } } -- a/foo/bar/c/main.go -- package c -- a/foo/bar/c/main_test.go -- package c import ( "os" "testing" ) func TestDir(t *testing.T) { if _, err := os.Stat("../../../testdata/1"); err != nil { t.Fatalf("testdata: %v", err) } if _, err := os.Stat("./testdata/1"); err != nil { t.Fatalf("testdata: %v", err) } } -- a/foo/bar/c/testdata/1 -- -- a/foo/bar/testdata/1 -- -- a/go.mod -- module a -- a/main.go -- package a -- a/main_test.go -- package a import ( "os" "testing" ) func TestDir(t *testing.T) { if _, err := os.Stat("./testdata/1"); err != nil { t.Fatalf("testdata: %v", err) } } -- a/testdata/1 -- -- appengine.go -- // +build appengine package m import _ "appengine" import _ "appengine/datastore" -- go.mod -- module m require ( a v1.0.0 mysite/myname/mypkg v1.0.0 w v1.0.0 // indirect x v1.0.0 y v1.0.0 z v1.0.0 ) replace ( a v1.0.0 => ./a mysite/myname/mypkg v1.0.0 => ./mypkg w v1.0.0 => ./w x v1.0.0 => ./x y v1.0.0 => ./y z v1.0.0 => ./z ) -- mypkg/go.mod -- module me -- mypkg/mydir/d.go -- package mydir -- subdir/v1_test.go -- package m import _ "mysite/myname/mypkg/mydir" -- testdata1.go -- package m import _ "a" -- testdata2.go -- package m import _ "a/foo/bar/b" import _ "a/foo/bar/c" -- v1.go -- package m import _ "x" -- v2.go -- // +build abc package mMmMmMm import _ "y" -- v3.go -- // +build !abc package m import _ "z" -- v4.go -- // +build notmytag package m import _ "x/x1" -- w/go.mod -- module w -- w/w.go -- package w -- x/go.mod -- module x -- x/testdata/x.txt -- placeholder - want directory with no go files -- x/x.go -- package x -- x/x1/x1.go -- // +build notmytag package x1 -- x/x2/dummy.txt -- dummy -- x/x_test.go -- package x import _ "w" -- y/go.mod -- module y -- y/y.go -- package y -- z/go.mod -- module z -- z/z.go -- package z
Close