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 /
sh4-linux-gnu /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
auxvec.h
1.02
KB
-rw-r--r--
bitsperlong.h
37
B
-rw-r--r--
bpf_perf_event.h
40
B
-rw-r--r--
byteorder.h
278
B
-rw-r--r--
cachectl.h
648
B
-rw-r--r--
cpu-features.h
1.13
KB
-rw-r--r--
errno.h
31
B
-rw-r--r--
fcntl.h
31
B
-rw-r--r--
hw_breakpoint.h
167
B
-rw-r--r--
ioctl.h
31
B
-rw-r--r--
ioctls.h
4.92
KB
-rw-r--r--
ipcbuf.h
32
B
-rw-r--r--
mman.h
30
B
-rw-r--r--
msgbuf.h
32
B
-rw-r--r--
param.h
31
B
-rw-r--r--
poll.h
30
B
-rw-r--r--
posix_types.h
95
B
-rw-r--r--
posix_types_32.h
801
B
-rw-r--r--
ptrace.h
856
B
-rw-r--r--
ptrace_32.h
1.57
KB
-rw-r--r--
resource.h
34
B
-rw-r--r--
sembuf.h
32
B
-rw-r--r--
setup.h
31
B
-rw-r--r--
shmbuf.h
32
B
-rw-r--r--
sigcontext.h
550
B
-rw-r--r--
siginfo.h
33
B
-rw-r--r--
signal.h
343
B
-rw-r--r--
socket.h
32
B
-rw-r--r--
sockios.h
602
B
-rw-r--r--
stat.h
1.64
KB
-rw-r--r--
statfs.h
32
B
-rw-r--r--
swab.h
880
B
-rw-r--r--
termbits.h
34
B
-rw-r--r--
termios.h
33
B
-rw-r--r--
types.h
31
B
-rw-r--r--
ucontext.h
34
B
-rw-r--r--
unistd.h
90
B
-rw-r--r--
unistd_32.h
11.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ptrace_32.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __ASM_SH_PTRACE_32_H #define __ASM_SH_PTRACE_32_H /* * GCC defines register number like this: * ----------------------------- * 0 - 15 are integer registers * 17 - 22 are control/special registers * 24 - 39 fp registers * 40 - 47 xd registers * 48 - fpscr register * ----------------------------- * * We follows above, except: * 16 --- program counter (PC) * 22 --- syscall # * 23 --- floating point communication register */ #define REG_REG0 0 #define REG_REG15 15 #define REG_PC 16 #define REG_PR 17 #define REG_SR 18 #define REG_GBR 19 #define REG_MACH 20 #define REG_MACL 21 #define REG_SYSCALL 22 #define REG_FPREG0 23 #define REG_FPREG15 38 #define REG_XFREG0 39 #define REG_XFREG15 54 #define REG_FPSCR 55 #define REG_FPUL 56 /* * This struct defines the way the registers are stored on the * kernel stack during a system call or other kernel entry. */ struct pt_regs { unsigned long regs[16]; unsigned long pc; unsigned long pr; unsigned long sr; unsigned long gbr; unsigned long mach; unsigned long macl; long tra; }; /* * This struct defines the way the DSP registers are stored on the * kernel stack during a system call or other kernel entry. */ struct pt_dspregs { unsigned long a1; unsigned long a0g; unsigned long a1g; unsigned long m0; unsigned long m1; unsigned long a0; unsigned long x0; unsigned long x1; unsigned long y0; unsigned long y1; unsigned long dsr; unsigned long rs; unsigned long re; unsigned long mod; }; #endif /* __ASM_SH_PTRACE_32_H */
Close