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_plan9.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. package signal import ( "os" "syscall" ) var sigtab = make(map[os.Signal]int) // In sig.s; jumps to runtime. func signal_disable(uint32) func signal_enable(uint32) func signal_ignore(uint32) func signal_ignored(uint32) bool func signal_recv() string func init() { signal_enable(0) // first call - initialize watchSignalLoop = loop } func loop() { for { process(syscall.Note(signal_recv())) } } const numSig = 256 func signum(sig os.Signal) int { switch sig := sig.(type) { case syscall.Note: n, ok := sigtab[sig] if !ok { n = len(sigtab) + 1 if n > numSig { return -1 } sigtab[sig] = n } return n 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