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-1496 /
transport /
[ HOME SHELL ]
Name
Size
Permission
Action
device.c
1.14
KB
-rw-r--r--
device.h
257
B
-rw-r--r--
exit_event.c
1.38
KB
-rw-r--r--
exit_event.h
297
B
-rw-r--r--
fork_event.c
1.12
KB
-rw-r--r--
fork_event.h
348
B
-rw-r--r--
fs_event.c
14.01
KB
-rw-r--r--
fs_event.h
1.36
KB
-rw-r--r--
message.c
11.78
KB
-rw-r--r--
message.h
2.5
KB
-rw-r--r--
ring.h
2.09
KB
-rw-r--r--
set.h
1.86
KB
-rw-r--r--
transport.c
27.22
KB
-rw-r--r--
transport.h
713
B
-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> // bool, [u]int(8|16|32|64)_t, pid_t void fs_event_pre_create(const char *pwd, const char *pathname); void fs_event_create(long ret_val, const char *pwd, const char *pathname); bool fs_event_pre_open(const char *pwd, const char *filename, unsigned int flags); void fs_event_open(long ret_val, const char *pwd, const char *filename, unsigned int flags); void fs_event_pre_write(const char *filename, unsigned int f_flags, loff_t offset, size_t count); void fs_event_write(long ret_val, const char *filename, unsigned int f_flags, loff_t offset, size_t count); void fs_event_pre_rename(const char* pwd_oldname, const char* oldname, const char* pwd_newname, const char* newname, unsigned int flags); void fs_event_rename(long ret_val, const char* pwd_oldname, const char* oldname, const char* pwd_newname, const char* newname, unsigned int flags); void fs_event_pre_unlink(const char *pwd, const char* pathname, int flag); void fs_event_unlink(long ret_val, const char *pwd, const char* pathname, int flag);
Close