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-1538 /
[ HOME SHELL ]
Name
Size
Permission
Action
common
[ DIR ]
drwxr-xr-x
ftrace_hooks
[ DIR ]
drwxr-xr-x
lsm_hooks
[ DIR ]
drwxr-xr-x
syscall_hooks
[ DIR ]
drwxr-xr-x
transport
[ DIR ]
drwxr-xr-x
Kbuild
8.38
KB
-rw-r--r--
Makefile
2.23
KB
-rw-r--r--
compat.c
6.35
KB
-rw-r--r--
compat.h
11.17
KB
-rw-r--r--
debug.h
3.56
KB
-rw-r--r--
dkms.conf
146
B
-rw-r--r--
file_contexts.c
41.54
KB
-rw-r--r--
file_contexts.h
3.8
KB
-rw-r--r--
file_contexts_priv.h
4.92
KB
-rw-r--r--
file_handle_tools.h
2.15
KB
-rw-r--r--
file_key_tools.h
869
B
-rw-r--r--
file_path_tools.h
2.09
KB
-rw-r--r--
hashtable_compat.h
2.45
KB
-rw-r--r--
hook_trampoline_common.h
4.2
KB
-rw-r--r--
interval_set.h
1.05
KB
-rw-r--r--
memory.h
1.37
KB
-rw-r--r--
module.c
1.86
KB
-rw-r--r--
module_ref.h
421
B
-rw-r--r--
module_rundown_protection.c
3.64
KB
-rw-r--r--
module_rundown_protection.h
743
B
-rw-r--r--
path_tools.h
4.25
KB
-rw-r--r--
rundown_protection.c
4.2
KB
-rw-r--r--
rundown_protection.h
2.83
KB
-rw-r--r--
si_common.h
4.37
KB
-rw-r--r--
si_fp_properties.h
858
B
-rw-r--r--
si_fp_properties_x.h
15.41
KB
-rw-r--r--
si_fp_value_types.h
515
B
-rw-r--r--
si_fp_value_types_x.h
1.25
KB
-rw-r--r--
si_size.h
4.15
KB
-rw-r--r--
si_templates.h
2.29
KB
-rw-r--r--
si_writer.h
6.36
KB
-rw-r--r--
si_writer_common.h
6.45
KB
-rw-r--r--
stringify.h
261
B
-rw-r--r--
task_info_map.c
14.33
KB
-rw-r--r--
task_info_map.h
6.27
KB
-rw-r--r--
task_tools.h
1.34
KB
-rw-r--r--
tracepoints.c
3.58
KB
-rw-r--r--
tracepoints.h
299
B
-rw-r--r--
write_protection.h
1.04
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : file_handle_tools.h
/** @file file_handle_tools.h @brief Tools for creating and working with file handles @details Copyright (c) 2024 Acronis International GmbH @author Bruce Wang (bruce.wang@acronis.com) @since $Id: $ */ #pragma once #include "compat.h" #include "memory.h" typedef struct { uint32_t handle_bytes; int handle_type; int mnt_id; unsigned char* f_handle; } file_handle_info_t; // init_empty initialize message enough so 'free' can work static inline void file_handle_info_init_empty(file_handle_info_t* info) { info->f_handle = NULL; } // It is a bit counterintuitive but 'info->mnt_id' is always filled in despite the return value. // If 'f_handle' is non-null, it can be used static inline int file_handle_info_make_with_alloc_flags(file_handle_info_t* info, const struct path *path, bool nowait) { int dwords = MAX_HANDLE_SZ >> 2; struct dentry *dentry = path->dentry; struct vfsmount* mnt = path->mnt; info->mnt_id = get_mnt_id(mnt); info->f_handle = NULL; info->handle_bytes = 0; #ifdef HAVE_EXPORTFS_ENCODE_INODE_FH if (!dentry || !dentry->d_inode || !dentry->d_inode->i_sb || !dentry->d_inode->i_sb->s_export_op) { return -EFAULT; } #else if (!dentry || !dentry->d_sb || !dentry->d_sb->s_export_op) { return -EFAULT; } #endif info->f_handle = mem_alloc_with_alloc_flags(MAX_HANDLE_SZ, nowait); if (!info->f_handle) { return -ENOMEM; } // Returns an enum fid_type or a negative on errno. info->handle_type = exportfs_encode_fh(dentry, (struct fid *)info->f_handle, &dwords, 0); if (info->handle_type < 0) { goto err; } info->handle_bytes = dwords * sizeof(u32); return 0; err: mem_free(info->f_handle); info->f_handle = NULL; return info->handle_type; } static inline int file_handle_info_make(file_handle_info_t* info, const struct path *path) { return file_handle_info_make_with_alloc_flags(info, path, false /*nowait*/); } static inline int file_handle_info_make_nowait(file_handle_info_t* info, const struct path *path) { return file_handle_info_make_with_alloc_flags(info, path, true /*nowait*/); } static inline void file_handle_info_free(file_handle_info_t* info) { if (info->f_handle) { mem_free(info->f_handle); } }
Close