Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
latrace.d /
[ HOME SHELL ]
Name
Size
Permission
Action
sysdeps
[ DIR ]
drwxr-xr-x
ctype.conf
392
B
-rw-r--r--
dirent.conf
825
B
-rw-r--r--
dlfcn.conf
417
B
-rw-r--r--
fcntl.conf
643
B
-rw-r--r--
getopt.conf
273
B
-rw-r--r--
inet.conf
655
B
-rw-r--r--
ioctl.conf
68
B
-rw-r--r--
libintl.conf
651
B
-rw-r--r--
libio.conf
646
B
-rw-r--r--
locale.conf
286
B
-rw-r--r--
misc.conf
292
B
-rw-r--r--
mman.conf
976
B
-rw-r--r--
ncurses.conf
10.77
KB
-rw-r--r--
netdb.conf
3.84
KB
-rw-r--r--
pthread.conf
7.51
KB
-rw-r--r--
pwd.conf
869
B
-rw-r--r--
resource.conf
2.24
KB
-rw-r--r--
signal.conf
2.56
KB
-rw-r--r--
socket.conf
3.29
KB
-rw-r--r--
stat.conf
1.6
KB
-rw-r--r--
stdio.conf
3.85
KB
-rw-r--r--
stdlib.conf
6.18
KB
-rw-r--r--
string.conf
2.77
KB
-rw-r--r--
syslog.conf
198
B
-rw-r--r--
term.conf
934
B
-rw-r--r--
termios.conf
671
B
-rw-r--r--
time.conf
1.6
KB
-rw-r--r--
typedefs.conf
472
B
-rw-r--r--
unistd.conf
4.3
KB
-rw-r--r--
utmp.conf
564
B
-rw-r--r--
wait.conf
419
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : signal.conf
/* /usr/include/signal.h */ enum SIGNALS { SIGHUP = 1, SIGINT = 2, SIGQUIT = 3, SIGILL = 4, SIGTRAP = 5, SIGABRT = 6, SIGIOT = 6, SIGBUS = 7, SIGFPE = 8, SIGKILL = 9, SIGUSR1 = 10, SIGSEGV = 11, SIGUSR2 = 12, SIGPIPE = 13, SIGALRM = 14, SIGTERM = 15, SIGSTKFLT = 16, SIGCHLD = 17, SIGCONT = 18, SIGSTOP = 19, SIGTSTP = 20, SIGTTIN = 21, SIGTTOU = 22, SIGURG = 23, SIGXCPU = 24, SIGXFSZ = 25, SIGVTALRM = 26, SIGPROF = 27, SIGWINCH = 28, SIGIO = 29, SIGPWR = 30, SIGSYS = 31, SIGUNUSED = 31, SIGRTMIN = 32, SIGRTMAX = 32 }; enum SIGNAL_HANDLER { SIG_DFL = 0, SIG_IGN = 1, SIG_ERR = -1 }; void* __sysv_signal(int sig = SIGNALS, void *handler = SIGNAL_HANDLER); void* sysv_signal(int sig = SIGNALS, void *handler = SIGNAL_HANDLER); void* signal(int sig = SIGNALS, void *handler = SIGNAL_HANDLER); void* bsd_signal(int sig = SIGNALS, void *handler = SIGNAL_HANDLER); int kill(__pid_t pid, int sig = SIGNALS); int killpg(__pid_t pgrp, int sig = SIGNALS); int raise(int sig = SIGNALS); void* ssignal(int sig = SIGNALS, void *handler = SIGNAL_HANDLER); int gsignal(int sig = SIGNALS); void psignal(int sig = SIGNALS, char *s); int __sigpause(int sig_or_mask, int is_sig); int sigpause(int mask); int sigblock(int mask); int sigsetmask(int mask); int siggetmask(); int sigemptyset(void *set); int sigfillset(void *set); int sigaddset(void *set, int signo = SIGNALS); int sigdelset(void *set, int signo = SIGNALS); int sigismember(void *set, int signo = SIGNALS); int sigisemptyset(void *set); int sigandset(void *set, void *left, void *right); int sigorset(void *set, void *left, void *right); int sigprocmask(int how, void *set, void *oset); int sigsuspend(void *set); int sigaction(int sig = SIGNALS, void *act, void *oact); int sigpending(void *set); int sigwait(void *set, int *sig); int sigwaitinfo(void *set, void *info); int sigtimedwait(void *set, void *info, void *__timeout); int sigqueue(__pid_t pid, int sig = SIGNALS, u_int val); int sigvec(int sig = SIGNALS, void *vec, void *ovec); int sigreturn(void *scp); int siginterrupt(int sig = SIGNALS, int interrupt); int sigstack(void *ss, void *oss); int sigaltstack(void *ss, void *oss); int sighold(int sig = SIGNALS); int sigrelse(int sig = SIGNALS); int sigignore(int sig = SIGNALS); void* sigset(int sig = SIGNALS, void *disp); int __libc_current_sigrtmin(); int __libc_current_sigrtmax();
Close