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 /
internal /
objabi /
[ HOME SHELL ]
Name
Size
Permission
Action
autotype.go
1.79
KB
-rw-r--r--
doc.go
3.89
KB
-rw-r--r--
flag.go
3.64
KB
-rw-r--r--
funcdata.go
918
B
-rw-r--r--
funcid.go
3.04
KB
-rw-r--r--
head.go
2.85
KB
-rw-r--r--
line.go
2.96
KB
-rw-r--r--
line_test.go
1.25
KB
-rw-r--r--
path.go
1.1
KB
-rw-r--r--
path_test.go
1018
B
-rw-r--r--
reloctype.go
11.23
KB
-rw-r--r--
reloctype_string.go
1.26
KB
-rw-r--r--
stack.go
907
B
-rw-r--r--
symkind.go
2.91
KB
-rw-r--r--
symkind_string.go
511
B
-rw-r--r--
typekind.go
647
B
-rw-r--r--
util.go
3.69
KB
-rw-r--r--
zbootstrap.go
460
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : line_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 objabi import ( "path/filepath" "runtime" "testing" ) // On Windows, "/foo" is reported as a relative path // (it is relative to the current drive letter), // so we need add a drive letter to test absolute path cases. func drive() string { if runtime.GOOS == "windows" { return "c:" } return "" } var absFileTests = []struct { dir string file string rewrites string abs string }{ {"/d", "f", "", "/d/f"}, {"/d", drive() + "/f", "", drive() + "/f"}, {"/d", "f/g", "", "/d/f/g"}, {"/d", drive() + "/f/g", "", drive() + "/f/g"}, {"/d", "f", "/d/f", "??"}, {"/d", "f/g", "/d/f", "g"}, {"/d", "f/g", "/d/f=>h", "h/g"}, {"/d", "f/g", "/d/f=>/h", "/h/g"}, {"/d", "f/g", "/d/f=>/h;/d/e=>/i", "/h/g"}, {"/d", "e/f", "/d/f=>/h;/d/e=>/i", "/i/f"}, } func TestAbsFile(t *testing.T) { for _, tt := range absFileTests { abs := filepath.FromSlash(AbsFile(filepath.FromSlash(tt.dir), filepath.FromSlash(tt.file), tt.rewrites)) want := filepath.FromSlash(tt.abs) if abs != want { t.Errorf("AbsFile(%q, %q, %q) = %q, want %q", tt.dir, tt.file, tt.rewrites, abs, want) } } }
Close