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-1569 /
[ 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
10.12
KB
-rw-r--r--
Makefile
2.23
KB
-rw-r--r--
compat.c
8.38
KB
-rw-r--r--
compat.h
11.49
KB
-rw-r--r--
debug.h
3.56
KB
-rw-r--r--
dkms.conf
146
B
-rw-r--r--
file_contexts.c
50
KB
-rw-r--r--
file_contexts.h
2.82
KB
-rw-r--r--
file_contexts_priv.h
5.42
KB
-rw-r--r--
file_handle_tools.h
2.16
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.73
KB
-rw-r--r--
hook_trampoline_common.h
4.29
KB
-rw-r--r--
interval_tree.h
779
B
-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
5.29
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.23
KB
-rw-r--r--
si_fp_properties.h
858
B
-rw-r--r--
si_fp_properties_x.h
18.11
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.39
KB
-rw-r--r--
si_writer.h
6.65
KB
-rw-r--r--
si_writer_common.h
10.45
KB
-rw-r--r--
stringify.h
261
B
-rw-r--r--
task_info_map.c
16.45
KB
-rw-r--r--
task_info_map.h
6.24
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
2.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : file_path_tools.h
/** @file file_path_tools.h @brief Tools for creating and working with file paths @details Copyright (c) 2024 Acronis International GmbH @author Denis Kopyrin (denis.kopyrin@acronis.com) @since $Id: $ */ #pragma once #include "compat.h" #include "memory.h" #include "si_common.h" typedef struct { char* buf; SiSizedString str; } path_info_t; // init_empty initialize message enough so 'free' can work static inline void path_info_init_empty(path_info_t* info) { info->buf = NULL; } static inline long path_info_make_with_alloc_flags(path_info_t* info, const struct path* path, bool dir, bool nowait) { const size_t max_path_len = PATH_MAX; long ret = -EFAULT; char* str; info->buf = (char*) mem_alloc_with_alloc_flags(max_path_len, nowait); if (!info->buf) { goto err; } str = d_absolute_path_compat(path, info->buf, max_path_len - (dir ? 1 : 0)); if (IS_ERR(str)) { ret = PTR_ERR(str); mem_free(info->buf); info->buf = NULL; goto err; } info->str.value = str; info->str.length = strlen(info->str.value); if (dir) { if (str[info->str.length - 1] != '/') { str[info->str.length] = '/'; str[info->str.length + 1] = '\0'; info->str.length++; } } return 0; err: info->str = (SiSizedString) {}; return ret; } static inline long path_info_make(path_info_t* info, const struct path* path, bool dir) { return path_info_make_with_alloc_flags(info, path, dir, false /*nowait*/); } static inline long path_info_make_nowait(path_info_t* info, const struct path* path, bool dir) { return path_info_make_with_alloc_flags(info, path, dir, true /*nowait*/); } static inline long path_info_make_from_valid(path_info_t* info, const struct path* path) { return path_info_make_with_alloc_flags(info, path, S_ISDIR(path->dentry->d_inode->i_mode), false /*nowait*/); } static inline long path_info_make_from_valid_nowait(path_info_t* info, const struct path* path) { return path_info_make_with_alloc_flags(info, path, S_ISDIR(path->dentry->d_inode->i_mode), true /*nowait*/); } static inline void path_info_free(const path_info_t* info) { if (info->buf) { mem_free(info->buf); } }
Close