Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
pcp /
pmdas /
bcc /
modules /
[ HOME SHELL ]
Name
Size
Permission
Action
fs
[ DIR ]
drwxr-xr-x
__init__.python
0
B
-rw-r--r--
biolatency.bpf
783
B
-rw-r--r--
biolatency.python
3.83
KB
-rw-r--r--
bioperpid.python
4.56
KB
-rw-r--r--
biotop.bpf
2.88
KB
-rw-r--r--
biotop.python
7.62
KB
-rw-r--r--
cachestat.bpf
487
B
-rw-r--r--
cachestat.python
4.63
KB
-rw-r--r--
execsnoop.bpf
2.95
KB
-rw-r--r--
execsnoop.python
7.39
KB
-rw-r--r--
exectop.bpf
491
B
-rw-r--r--
exectop.python
2.61
KB
-rw-r--r--
klockstat.bpf
4.9
KB
-rw-r--r--
klockstat.python
7.92
KB
-rw-r--r--
kprobe_hits.bpf
718
B
-rw-r--r--
kprobe_hits.python
12.39
KB
-rw-r--r--
netproc.bpf
2.29
KB
-rw-r--r--
netproc.python
6.78
KB
-rw-r--r--
pcpbcc.python
14.37
KB
-rw-r--r--
profile.bpf
1.84
KB
-rw-r--r--
profile.python
11.64
KB
-rw-r--r--
runqlat.python
5.64
KB
-rw-r--r--
runqlat_kp.bpf
2.92
KB
-rw-r--r--
runqlat_tp.bpf
3.15
KB
-rw-r--r--
syscount.bpf
1.44
KB
-rw-r--r--
syscount.python
9.87
KB
-rw-r--r--
sysfork.bpf
392
B
-rw-r--r--
sysfork.python
2.35
KB
-rw-r--r--
tcplife.python
8.94
KB
-rw-r--r--
tcplife_kp.bpf
4.88
KB
-rw-r--r--
tcplife_tp.bpf
4.95
KB
-rw-r--r--
tcpperpid.python
9.96
KB
-rw-r--r--
tcpretrans.python
5.03
KB
-rw-r--r--
tcpretrans_count.bpf
2.75
KB
-rw-r--r--
tcptop.bpf
3.33
KB
-rw-r--r--
tcptop.python
9.38
KB
-rw-r--r--
tracepoint_hits.bpf
214
B
-rw-r--r--
tracepoint_hits.python
6.92
KB
-rw-r--r--
ucalls.bpf
1.99
KB
-rw-r--r--
ucalls.python
8.41
KB
-rw-r--r--
uprobe_hits.bpf
223
B
-rw-r--r--
uprobe_hits.python
5.55
KB
-rw-r--r--
usdt_hits.bpf
215
B
-rw-r--r--
usdt_hits.python
6.32
KB
-rw-r--r--
usdt_jvm_threads.bpf
429
B
-rw-r--r--
usdt_jvm_threads.python
4.29
KB
-rw-r--r--
ustat.python
11.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : syscount.bpf
// Copyright 2017, Sasha Goldshtein. // Licensed under the Apache License, Version 2.0 (the "License") DEFINE_DETAILS DEFINE_LATENCY struct key_t { u32 pid; u32 id; }; BPF_ARRAY(stats, u64, NR_SYSCALLS); #ifdef LATENCY BPF_ARRAY(latstats, u64, NR_SYSCALLS); BPF_HASH(start, u64, u64); #endif #ifdef DETAILS BPF_HASH(pidstats, struct key_t, u64, MAX_PIDS * NR_SYSCALLS); #ifdef LATENCY BPF_HASH(pidlatstats, struct key_t, u64, MAX_PIDS * NR_SYSCALLS); #endif #endif #ifdef LATENCY TRACEPOINT_PROBE(raw_syscalls, sys_enter) { u64 pid = bpf_get_current_pid_tgid(); FILTER_PID u64 t = bpf_ktime_get_ns(); start.update(&pid, &t); return 0; } #endif TRACEPOINT_PROBE(raw_syscalls, sys_exit) { u64 pid = bpf_get_current_pid_tgid(); FILTER_PID //FILTER_FAILED //FILTER_ERRNO u32 id = args->id; if (id > NR_SYSCALLS) return 0; u64 *val = stats.lookup(&id); if (val) (*val)++; #ifdef DETAILS u64 zero = 0; struct key_t key = {.pid = pid >> 32, .id = id}; val = pidstats.lookup_or_init(&key, &zero); if (val) { ++(*val); } #endif #ifdef LATENCY u64 *start_ns = start.lookup(&pid); if (!start_ns) return 0; start.delete(&pid); u64 time_ns = bpf_ktime_get_ns() - *start_ns; val = latstats.lookup(&id); if (val) (*val) += time_ns; #ifdef DETAILS val = pidlatstats.lookup_or_init(&key, &zero); if (val) (*val) += time_ns; #endif #endif return 0; }
Close