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 /
s390x-linux-gnu /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
auxvec.h
214
B
-rw-r--r--
bitsperlong.h
293
B
-rw-r--r--
bpf_perf_event.h
235
B
-rw-r--r--
byteorder.h
188
B
-rw-r--r--
chpid.h
441
B
-rw-r--r--
chsc.h
2.83
KB
-rw-r--r--
clp.h
549
B
-rw-r--r--
cmb.h
1.86
KB
-rw-r--r--
dasd.h
12.77
KB
-rw-r--r--
errno.h
31
B
-rw-r--r--
fcntl.h
31
B
-rw-r--r--
fs3270.h
729
B
-rw-r--r--
guarded_storage.h
1.2
KB
-rw-r--r--
hwctrset.h
1.65
KB
-rw-r--r--
hypfs.h
1.35
KB
-rw-r--r--
ioctl.h
31
B
-rw-r--r--
ioctls.h
191
B
-rw-r--r--
ipcbuf.h
770
B
-rw-r--r--
ipl.h
3.93
KB
-rw-r--r--
kvm.h
15.47
KB
-rw-r--r--
kvm_para.h
224
B
-rw-r--r--
kvm_perf.h
474
B
-rw-r--r--
mman.h
30
B
-rw-r--r--
monwriter.h
939
B
-rw-r--r--
msgbuf.h
32
B
-rw-r--r--
param.h
31
B
-rw-r--r--
perf_regs.h
887
B
-rw-r--r--
pkey.h
20.47
KB
-rw-r--r--
poll.h
30
B
-rw-r--r--
posix_types.h
1.4
KB
-rw-r--r--
ptrace.h
11.62
KB
-rw-r--r--
qeth.h
3.05
KB
-rw-r--r--
raw3270.h
2.12
KB
-rw-r--r--
resource.h
34
B
-rw-r--r--
runtime_instr.h
1.41
KB
-rw-r--r--
schid.h
365
B
-rw-r--r--
sclp_ctl.h
465
B
-rw-r--r--
sembuf.h
32
B
-rw-r--r--
setup.h
63
B
-rw-r--r--
shmbuf.h
32
B
-rw-r--r--
sie.h
9.23
KB
-rw-r--r--
sigcontext.h
1.7
KB
-rw-r--r--
siginfo.h
33
B
-rw-r--r--
signal.h
2.88
KB
-rw-r--r--
socket.h
32
B
-rw-r--r--
sockios.h
33
B
-rw-r--r--
stat.h
2.9
KB
-rw-r--r--
statfs.h
1.03
KB
-rw-r--r--
sthyi.h
163
B
-rw-r--r--
swab.h
30
B
-rw-r--r--
tape390.h
2.76
KB
-rw-r--r--
termbits.h
34
B
-rw-r--r--
termios.h
33
B
-rw-r--r--
types.h
496
B
-rw-r--r--
ucontext.h
1.18
KB
-rw-r--r--
unistd.h
311
B
-rw-r--r--
unistd_32.h
11.7
KB
-rw-r--r--
unistd_64.h
10.19
KB
-rw-r--r--
uvdevice.h
3.57
KB
-rw-r--r--
virtio-ccw.h
444
B
-rw-r--r--
vmcp.h
722
B
-rw-r--r--
vtoc.h
7.36
KB
-rw-r--r--
zcrypt.h
10.95
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : uvdevice.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Copyright IBM Corp. 2022 * Author(s): Steffen Eiden <seiden@linux.ibm.com> */ #ifndef __S390_ASM_UVDEVICE_H #define __S390_ASM_UVDEVICE_H #include <linux/types.h> struct uvio_ioctl_cb { __u32 flags; __u16 uv_rc; /* UV header rc value */ __u16 uv_rrc; /* UV header rrc value */ __u64 argument_addr; /* Userspace address of uvio argument */ __u32 argument_len; __u8 reserved14[0x40 - 0x14]; /* must be zero */ }; #define UVIO_ATT_USER_DATA_LEN 0x100 #define UVIO_ATT_UID_LEN 0x10 struct uvio_attest { __u64 arcb_addr; /* 0x0000 */ __u64 meas_addr; /* 0x0008 */ __u64 add_data_addr; /* 0x0010 */ __u8 user_data[UVIO_ATT_USER_DATA_LEN]; /* 0x0018 */ __u8 config_uid[UVIO_ATT_UID_LEN]; /* 0x0118 */ __u32 arcb_len; /* 0x0128 */ __u32 meas_len; /* 0x012c */ __u32 add_data_len; /* 0x0130 */ __u16 user_data_len; /* 0x0134 */ __u16 reserved136; /* 0x0136 */ }; /** * uvio_uvdev_info - Information of supported functions * @supp_uvio_cmds - supported IOCTLs by this device * @supp_uv_cmds - supported UVCs corresponding to the IOCTL * * UVIO request to get information about supported request types by this * uvdevice and the Ultravisor. Everything is output. Bits are in LSB0 * ordering. If the bit is set in both, @supp_uvio_cmds and @supp_uv_cmds, the * uvdevice and the Ultravisor support that call. * * Note that bit 0 (UVIO_IOCTL_UVDEV_INFO_NR) is always zero for `supp_uv_cmds` * as there is no corresponding UV-call. */ struct uvio_uvdev_info { /* * If bit `n` is set, this device supports the IOCTL with nr `n`. */ __u64 supp_uvio_cmds; /* * If bit `n` is set, the Ultravisor(UV) supports the UV-call * corresponding to the IOCTL with nr `n` in the calling contextx (host * or guest). The value is only valid if the corresponding bit in * @supp_uvio_cmds is set as well. */ __u64 supp_uv_cmds; }; /* * The following max values define an upper length for the IOCTL in/out buffers. * However, they do not represent the maximum the Ultravisor allows which is * often way smaller. By allowing larger buffer sizes we hopefully do not need * to update the code with every machine update. It is therefore possible for * userspace to request more memory than actually used by kernel/UV. */ #define UVIO_ATT_ARCB_MAX_LEN 0x100000 #define UVIO_ATT_MEASUREMENT_MAX_LEN 0x8000 #define UVIO_ATT_ADDITIONAL_MAX_LEN 0x8000 #define UVIO_ADD_SECRET_MAX_LEN 0x100000 #define UVIO_LIST_SECRETS_LEN 0x1000 #define UVIO_DEVICE_NAME "uv" #define UVIO_TYPE_UVC 'u' enum UVIO_IOCTL_NR { UVIO_IOCTL_UVDEV_INFO_NR = 0x00, UVIO_IOCTL_ATT_NR, UVIO_IOCTL_ADD_SECRET_NR, UVIO_IOCTL_LIST_SECRETS_NR, UVIO_IOCTL_LOCK_SECRETS_NR, /* must be the last entry */ UVIO_IOCTL_NUM_IOCTLS }; #define UVIO_IOCTL(nr) _IOWR(UVIO_TYPE_UVC, nr, struct uvio_ioctl_cb) #define UVIO_IOCTL_UVDEV_INFO UVIO_IOCTL(UVIO_IOCTL_UVDEV_INFO_NR) #define UVIO_IOCTL_ATT UVIO_IOCTL(UVIO_IOCTL_ATT_NR) #define UVIO_IOCTL_ADD_SECRET UVIO_IOCTL(UVIO_IOCTL_ADD_SECRET_NR) #define UVIO_IOCTL_LIST_SECRETS UVIO_IOCTL(UVIO_IOCTL_LIST_SECRETS_NR) #define UVIO_IOCTL_LOCK_SECRETS UVIO_IOCTL(UVIO_IOCTL_LOCK_SECRETS_NR) #define UVIO_SUPP_CALL(nr) (1ULL << (nr)) #define UVIO_SUPP_UDEV_INFO UVIO_SUPP_CALL(UVIO_IOCTL_UDEV_INFO_NR) #define UVIO_SUPP_ATT UVIO_SUPP_CALL(UVIO_IOCTL_ATT_NR) #define UVIO_SUPP_ADD_SECRET UVIO_SUPP_CALL(UVIO_IOCTL_ADD_SECRET_NR) #define UVIO_SUPP_LIST_SECRETS UVIO_SUPP_CALL(UVIO_IOCTL_LIST_SECRETS_NR) #define UVIO_SUPP_LOCK_SECRETS UVIO_SUPP_CALL(UVIO_IOCTL_LOCK_SECRETS_NR) #endif /* __S390_ASM_UVDEVICE_H */
Close