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 /
testenv /
[ HOME SHELL ]
Name
Size
Permission
Action
testenv.go
7.78
KB
-rw-r--r--
testenv_cgo.go
224
B
-rw-r--r--
testenv_notwin.go
356
B
-rw-r--r--
testenv_windows.go
1.04
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : testenv_windows.go
// Copyright 2016 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 testenv import ( "io/ioutil" "os" "path/filepath" "sync" "syscall" ) var symlinkOnce sync.Once var winSymlinkErr error func initWinHasSymlink() { tmpdir, err := ioutil.TempDir("", "symtest") if err != nil { panic("failed to create temp directory: " + err.Error()) } defer os.RemoveAll(tmpdir) err = os.Symlink("target", filepath.Join(tmpdir, "symlink")) if err != nil { err = err.(*os.LinkError).Err switch err { case syscall.EWINDOWS, syscall.ERROR_PRIVILEGE_NOT_HELD: winSymlinkErr = err } } } func hasSymlink() (ok bool, reason string) { symlinkOnce.Do(initWinHasSymlink) switch winSymlinkErr { case nil: return true, "" case syscall.EWINDOWS: return false, ": symlinks are not supported on your version of Windows" case syscall.ERROR_PRIVILEGE_NOT_HELD: return false, ": you don't have enough privileges to create symlinks" } return false, "" }
Close