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 /
alpha-linux-gnu /
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 : fcntl.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ALPHA_FCNTL_H #define _ALPHA_FCNTL_H #define O_CREAT 01000 /* not fcntl */ #define O_TRUNC 02000 /* not fcntl */ #define O_EXCL 04000 /* not fcntl */ #define O_NOCTTY 010000 /* not fcntl */ #define O_NONBLOCK 00004 #define O_APPEND 00010 #define O_DSYNC 040000 /* used to be O_SYNC, see below */ #define O_DIRECTORY 0100000 /* must be a directory */ #define O_NOFOLLOW 0200000 /* don't follow links */ #define O_LARGEFILE 0400000 /* will be set by the kernel on every open */ #define O_DIRECT 02000000 /* direct disk access - should check with OSF/1 */ #define O_NOATIME 04000000 #define O_CLOEXEC 010000000 /* set close_on_exec */ /* * Before Linux 2.6.33 only O_DSYNC semantics were implemented, but using * the O_SYNC flag. We continue to use the existing numerical value * for O_DSYNC semantics now, but using the correct symbolic name for it. * This new value is used to request true Posix O_SYNC semantics. It is * defined in this strange way to make sure applications compiled against * new headers get at least O_DSYNC semantics on older kernels. * * This has the nice side-effect that we can simply test for O_DSYNC * wherever we do not care if O_DSYNC or O_SYNC is used. * * Note: __O_SYNC must never be used directly. */ #define __O_SYNC 020000000 #define O_SYNC (__O_SYNC|O_DSYNC) #define O_PATH 040000000 #define __O_TMPFILE 0100000000 #define F_GETLK 7 #define F_SETLK 8 #define F_SETLKW 9 #define F_SETOWN 5 /* for sockets. */ #define F_GETOWN 6 /* for sockets. */ #define F_SETSIG 10 /* for sockets. */ #define F_GETSIG 11 /* for sockets. */ /* for posix fcntl() and lockf() */ #define F_RDLCK 1 #define F_WRLCK 2 #define F_UNLCK 8 /* for old implementation of bsd flock () */ #define F_EXLCK 16 /* or 3 */ #define F_SHLCK 32 /* or 4 */ #include <asm-generic/fcntl.h> #endif
Close