Linux id-dci-web1980.main-hosting.eu 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
: 153.92.8.146 | : 216.73.216.30
Cant Read [ /etc/named.conf ]
8.3.30
u610877233
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
/
lib /
python3.9 /
site-packages /
bcc /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-39.opt-1.pyc
54.16
KB
-rw-r--r--
__init__.cpython-39.pyc
54.24
KB
-rw-r--r--
containers.cpython-39.opt-1.py...
3.19
KB
-rw-r--r--
containers.cpython-39.pyc
3.19
KB
-rw-r--r--
disassembler.cpython-39.opt-1....
11.45
KB
-rw-r--r--
disassembler.cpython-39.pyc
11.45
KB
-rw-r--r--
libbcc.cpython-39.opt-1.pyc
8.74
KB
-rw-r--r--
libbcc.cpython-39.pyc
8.74
KB
-rw-r--r--
perf.cpython-39.opt-1.pyc
5.39
KB
-rw-r--r--
perf.cpython-39.pyc
5.39
KB
-rw-r--r--
syscall.cpython-39.opt-1.pyc
8.6
KB
-rw-r--r--
syscall.cpython-39.pyc
8.6
KB
-rw-r--r--
table.cpython-39.opt-1.pyc
44.49
KB
-rw-r--r--
table.cpython-39.pyc
44.49
KB
-rw-r--r--
tcp.cpython-39.opt-1.pyc
1010
B
-rw-r--r--
tcp.cpython-39.pyc
1010
B
-rw-r--r--
usdt.cpython-39.opt-1.pyc
7.75
KB
-rw-r--r--
usdt.cpython-39.pyc
7.75
KB
-rw-r--r--
utils.cpython-39.opt-1.pyc
4.35
KB
-rw-r--r--
utils.cpython-39.pyc
4.37
KB
-rw-r--r--
version.cpython-39.opt-1.pyc
160
B
-rw-r--r--
version.cpython-39.pyc
160
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : containers.cpython-39.opt-1.pyc
a u*�hk � @ s d d� Z dd� Zdd� ZdS )c C s | sdS d}|� d| �S )NzV static inline int _cgroup_filter() { return 0; } z� BPF_TABLE_PINNED("hash", u64, u64, cgroupset, 1024, "CGROUP_PATH"); static inline int _cgroup_filter() { u64 cgroupid = bpf_get_current_cgroup_id(); return cgroupset.lookup(&cgroupid) == NULL; } ZCGROUP_PATH��replace)� cgroupmap�text� r �2/usr/lib/python3.9/site-packages/bcc/containers.py�_cgroup_filter_func_writer s r c C s | sdS d}|� d| �S )NzU static inline int _mntns_filter() { return 0; } a� #include <linux/nsproxy.h> #include <linux/mount.h> #include <linux/ns_common.h> /* see mountsnoop.py: * XXX: struct mnt_namespace is defined in fs/mount.h, which is private * to the VFS and not installed in any kernel-devel packages. So, let's * duplicate the important part of the definition. There are actually * more members in the real struct, but we don't need them, and they're * more likely to change. */ struct mnt_namespace { // This field was removed in https://github.com/torvalds/linux/commit/1a7b8969e664d6af328f00fe6eb7aabd61a71d13 #if LINUX_VERSION_CODE < KERNEL_VERSION(5, 11, 0) atomic_t count; #endif struct ns_common ns; }; /* * To add mountsnoop support for --selector option, we need to call * filter_by_containers(). * This function adds code which defines struct mnt_namespace. * The problem is that this struct is also defined in mountsnoop BPF code. * To avoid redefining it in mountnsoop code, we define * MNT_NAMESPACE_DEFINED here. * Then, in mountsnoop code, the struct mnt_namespace definition is guarded * by: * #ifndef MNT_NAMESPACE_DEFINED * // ... * #endif */ #define MNT_NAMESPACE_DEFINED BPF_TABLE_PINNED("hash", u64, u32, mount_ns_set, 1024, "MOUNT_NS_PATH"); static inline int _mntns_filter() { struct task_struct *current_task; struct nsproxy *nsproxy; struct mnt_namespace *mnt_ns; unsigned int inum; u64 ns_id; current_task = (struct task_struct *)bpf_get_current_task(); if (bpf_probe_read_kernel(&nsproxy, sizeof(nsproxy), ¤t_task->nsproxy)) return 0; if (bpf_probe_read_kernel(&mnt_ns, sizeof(mnt_ns), &nsproxy->mnt_ns)) return 0; if (bpf_probe_read_kernel(&inum, sizeof(inum), &mnt_ns->ns.inum)) return 0; ns_id = (u64) inum; return mount_ns_set.lookup(&ns_id) == NULL; } Z MOUNT_NS_PATHr )�mntnsmapr r r r �_mntns_filter_func_writer"