Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.69.6.165
Cant Read [ /etc/named.conf ]
7.4.33
aja
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 /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
a.out.h
756
B
-rw-r--r--
amd_hsmp.h
8.68
KB
-rw-r--r--
auxvec.h
618
B
-rw-r--r--
bitsperlong.h
321
B
-rw-r--r--
boot.h
323
B
-rw-r--r--
bootparam.h
7.58
KB
-rw-r--r--
bpf_perf_event.h
40
B
-rw-r--r--
byteorder.h
176
B
-rw-r--r--
debugreg.h
3.25
KB
-rw-r--r--
e820.h
2.52
KB
-rw-r--r--
errno.h
31
B
-rw-r--r--
fcntl.h
31
B
-rw-r--r--
hw_breakpoint.h
69
B
-rw-r--r--
hwcap2.h
270
B
-rw-r--r--
ioctl.h
31
B
-rw-r--r--
ioctls.h
32
B
-rw-r--r--
ipcbuf.h
32
B
-rw-r--r--
ist.h
854
B
-rw-r--r--
kvm.h
11.44
KB
-rw-r--r--
kvm_para.h
4.24
KB
-rw-r--r--
kvm_perf.h
388
B
-rw-r--r--
ldt.h
1.28
KB
-rw-r--r--
mce.h
1.65
KB
-rw-r--r--
mman.h
1002
B
-rw-r--r--
msgbuf.h
1.03
KB
-rw-r--r--
msr.h
346
B
-rw-r--r--
mtrr.h
4.13
KB
-rw-r--r--
param.h
31
B
-rw-r--r--
perf_regs.h
1.37
KB
-rw-r--r--
poll.h
30
B
-rw-r--r--
posix_types.h
224
B
-rw-r--r--
posix_types_32.h
765
B
-rw-r--r--
posix_types_64.h
609
B
-rw-r--r--
posix_types_x32.h
581
B
-rw-r--r--
prctl.h
618
B
-rw-r--r--
processor-flags.h
6.47
KB
-rw-r--r--
ptrace-abi.h
1.99
KB
-rw-r--r--
ptrace.h
1.46
KB
-rw-r--r--
resource.h
34
B
-rw-r--r--
sembuf.h
1.02
KB
-rw-r--r--
setup.h
6
B
-rw-r--r--
sgx.h
8.15
KB
-rw-r--r--
shmbuf.h
1.23
KB
-rw-r--r--
sigcontext.h
9.5
KB
-rw-r--r--
sigcontext32.h
247
B
-rw-r--r--
siginfo.h
422
B
-rw-r--r--
signal.h
2.83
KB
-rw-r--r--
socket.h
32
B
-rw-r--r--
sockios.h
33
B
-rw-r--r--
stat.h
3.06
KB
-rw-r--r--
statfs.h
416
B
-rw-r--r--
svm.h
9.54
KB
-rw-r--r--
swab.h
724
B
-rw-r--r--
termbits.h
34
B
-rw-r--r--
termios.h
33
B
-rw-r--r--
types.h
152
B
-rw-r--r--
ucontext.h
2.07
KB
-rw-r--r--
unistd.h
359
B
-rw-r--r--
unistd_32.h
10.87
KB
-rw-r--r--
unistd_64.h
9.1
KB
-rw-r--r--
unistd_x32.h
16.03
KB
-rw-r--r--
vm86.h
3.04
KB
-rw-r--r--
vmx.h
7.2
KB
-rw-r--r--
vsyscall.h
263
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : e820.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ASM_X86_E820_H #define _ASM_X86_E820_H #define E820MAP 0x2d0 /* our map */ #define E820MAX 128 /* number of entries in E820MAP */ /* * Legacy E820 BIOS limits us to 128 (E820MAX) nodes due to the * constrained space in the zeropage. If we have more nodes than * that, and if we've booted off EFI firmware, then the EFI tables * passed us from the EFI firmware can list more nodes. Size our * internal memory map tables to have room for these additional * nodes, based on up to three entries per node for which the * kernel was built: MAX_NUMNODES == (1 << CONFIG_NODES_SHIFT), * plus E820MAX, allowing space for the possible duplicate E820 * entries that might need room in the same arrays, prior to the * call to sanitize_e820_map() to remove duplicates. The allowance * of three memory map entries per node is "enough" entries for * the initial hardware platform motivating this mechanism to make * use of additional EFI map entries. Future platforms may want * to allow more than three entries per node or otherwise refine * this size. */ #define E820_X_MAX E820MAX #define E820NR 0x1e8 /* # entries in E820MAP */ #define E820_RAM 1 #define E820_RESERVED 2 #define E820_ACPI 3 #define E820_NVS 4 #define E820_UNUSABLE 5 #define E820_PMEM 7 /* * This is a non-standardized way to represent ADR or NVDIMM regions that * persist over a reboot. The kernel will ignore their special capabilities * unless the CONFIG_X86_PMEM_LEGACY option is set. * * ( Note that older platforms also used 6 for the same type of memory, * but newer versions switched to 12 as 6 was assigned differently. Some * time they will learn... ) */ #define E820_PRAM 12 /* * reserved RAM used by kernel itself * if CONFIG_INTEL_TXT is enabled, memory of this type will be * included in the S3 integrity calculation and so should not include * any memory that BIOS might alter over the S3 transition */ #define E820_RESERVED_KERN 128 #ifndef __ASSEMBLY__ #include <linux/types.h> struct e820entry { __u64 addr; /* start of memory segment */ __u64 size; /* size of memory segment */ __u32 type; /* type of memory segment */ } __attribute__((packed)); struct e820map { __u32 nr_map; struct e820entry map[E820_X_MAX]; }; #define ISA_START_ADDRESS 0xa0000 #define ISA_END_ADDRESS 0x100000 #define BIOS_BEGIN 0x000a0000 #define BIOS_END 0x00100000 #define BIOS_ROM_BASE 0xffe00000 #define BIOS_ROM_END 0xffffffff #endif /* __ASSEMBLY__ */ #endif /* _ASM_X86_E820_H */
Close