Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
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 /
arm-linux-gnueabihf /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
auxvec.h
165
B
-rw-r--r--
bitsperlong.h
37
B
-rw-r--r--
bpf_perf_event.h
40
B
-rw-r--r--
byteorder.h
711
B
-rw-r--r--
errno.h
31
B
-rw-r--r--
fcntl.h
355
B
-rw-r--r--
hwcap.h
1.18
KB
-rw-r--r--
ioctl.h
31
B
-rw-r--r--
ioctls.h
183
B
-rw-r--r--
ipcbuf.h
32
B
-rw-r--r--
kvm_para.h
34
B
-rw-r--r--
mman.h
145
B
-rw-r--r--
msgbuf.h
32
B
-rw-r--r--
param.h
31
B
-rw-r--r--
perf_regs.h
494
B
-rw-r--r--
poll.h
30
B
-rw-r--r--
posix_types.h
1.04
KB
-rw-r--r--
ptrace.h
3.8
KB
-rw-r--r--
resource.h
34
B
-rw-r--r--
sembuf.h
32
B
-rw-r--r--
setup.h
3.93
KB
-rw-r--r--
shmbuf.h
32
B
-rw-r--r--
sigcontext.h
831
B
-rw-r--r--
siginfo.h
33
B
-rw-r--r--
signal.h
2.7
KB
-rw-r--r--
socket.h
32
B
-rw-r--r--
sockios.h
33
B
-rw-r--r--
stat.h
1.93
KB
-rw-r--r--
statfs.h
423
B
-rw-r--r--
swab.h
1.32
KB
-rw-r--r--
termbits.h
34
B
-rw-r--r--
termios.h
33
B
-rw-r--r--
types.h
1.43
KB
-rw-r--r--
unistd-common.h
18.99
KB
-rw-r--r--
unistd-eabi.h
102
B
-rw-r--r--
unistd-oabi.h
644
B
-rw-r--r--
unistd.h
1.21
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : types.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _ASM_TYPES_H #define _ASM_TYPES_H #include <asm-generic/int-ll64.h> /* * The C99 types uintXX_t that are usually defined in 'stdint.h' are not as * unambiguous on ARM as you would expect. For the types below, there is a * difference on ARM between GCC built for bare metal ARM, GCC built for glibc * and the kernel itself, which results in build errors if you try to build with * -ffreestanding and include 'stdint.h' (such as when you include 'arm_neon.h' * in order to use NEON intrinsics) * * As the typedefs for these types in 'stdint.h' are based on builtin defines * supplied by GCC, we can tweak these to align with the kernel's idea of those * types, so 'linux/types.h' and 'stdint.h' can be safely included from the same * source file (provided that -ffreestanding is used). * * int32_t uint32_t uintptr_t * bare metal GCC long unsigned long unsigned int * glibc GCC int unsigned int unsigned int * kernel int unsigned int unsigned long */ #ifdef __INT32_TYPE__ #undef __INT32_TYPE__ #define __INT32_TYPE__ int #endif #ifdef __UINT32_TYPE__ #undef __UINT32_TYPE__ #define __UINT32_TYPE__ unsigned int #endif #ifdef __UINTPTR_TYPE__ #undef __UINTPTR_TYPE__ #define __UINTPTR_TYPE__ unsigned long #endif #endif /* _ASM_TYPES_H */
Close