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-1549 /
transport /
[ HOME SHELL ]
Name
Size
Permission
Action
device.c
1.18
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.37
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 : fs_event.h
/** @file @brief File system events messages @details Copyright (c) 2017-2021 Acronis International GmbH @author Mikhail Krivtsov (mikhail.krivtsov@acronis.com) @since $Id: $ */ #pragma once #include <linux/fs.h> // struct file #include <linux/path.h> // struct path #include <linux/types.h> // [u]int(8|16|32|64)_t, pid_t #include "compat.h" #include "message.h" #include "transport_protocol.h" #include "file_contexts.h" #include "task_info_map.h" // Generates async FP_SI_OT_NOTIFY_FILE_CREATE void fs_event_create(task_info_t* task, const struct path *path); // Generates sync+async FP_SI_OT_*_FILE_PRE_OPEN long fs_event_pre_open(task_info_t* task, unsigned int flags, const struct path *path, const file_context_msg_info_t *info); // Generates sync+async FP_SI_OT_*_FILE_PRE_MMAP long fs_event_pre_mmap(task_info_t* task, unsigned int fflags, const struct path *path, unsigned long reqprot, unsigned long prot, unsigned long mmap_flags); // Generates sync+async FP_SI_OT_*_FILE_PRE_CLOSE void fs_event_pre_close(task_info_t* task, unsigned int flags, const struct path *path); // Generates sync FP_SI_OT_SYNC_FILE_PRE_WRITE long fs_event_pre_write(task_info_t* task, unsigned int f_flags, loff_t offset, size_t count, const struct path *path, const file_context_msg_info_t *info); // Generates async FP_SI_OT_NOTIFY_FILE_FULL_READ void fs_event_pre_full_read(task_info_t* task, const file_key_t* key, unsigned int f_flags, loff_t offset, size_t count); // Generates sync+async FP_SI_OT_*_FILE_PRE_RENAME long fs_event_pre_rename(task_info_t *task, unsigned int flags, const struct path *oldpath, const struct path *newpath, bool target_exists); // Generates sync+async FP_SI_OT_*_FILE_PRE_LINK long fs_event_pre_link(task_info_t *task, const struct path *oldpath, const struct path *newpath); // Generates sync+async FP_SI_OT_*_FILE_PRE_TRUNCATE long fs_event_pre_truncate(task_info_t *task, const struct path *path); // Used only for replaying message in post-rename from syscall hooks // Pass NULL in 'path' if target/new path existed // Generates sync FP_SI_OT_SYNC_FILE_RENAME and async FP_SI_OT_NOTIFY_FSNOTIFY_RENAME w/ extra fields for target void fs_event_rename(task_info_t *task, const struct path *path, bool is_newpath_ok); // Generates sync+async FP_SI_OT_*_FILE_PRE_UNLINK long fs_event_pre_unlink(task_info_t* task, const struct path *path); void fs_event_fsnotify(task_info_t *task, const file_key_t* key, uint64_t flags, msg_type_t type);
Close