Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
linux-headers-6.8.0-136 /
samples /
bpf /
Delete
Unzip
Name
Size
Permission
Date
Action
Makefile
14.39
KB
-rw-r--r--
2026-07-01 19:48
Makefile.target
2.52
KB
-rw-r--r--
2024-03-10 20:38
do_hbm_test.sh
12
KB
-rwxr-xr-x
2024-03-10 20:38
lwt_len_hist.sh
1.03
KB
-rwxr-xr-x
2024-03-10 20:38
run_cookie_uid_helper_example.sh
341
B
-rwxr-xr-x
2024-03-10 20:38
tc_l2_redirect.sh
5.07
KB
-rwxr-xr-x
2024-03-10 20:38
test_cgrp2_sock.sh
2.87
KB
-rwxr-xr-x
2024-03-10 20:38
test_cgrp2_sock2.sh
1.94
KB
-rwxr-xr-x
2024-03-10 20:38
test_cgrp2_tc.sh
4.28
KB
-rwxr-xr-x
2024-03-10 20:38
test_cls_bpf.sh
915
B
-rwxr-xr-x
2024-03-10 20:38
test_lwt_bpf.sh
9.15
KB
-rwxr-xr-x
2024-03-10 20:38
test_override_return.sh
276
B
-rwxr-xr-x
2024-03-10 20:38
xdp2skb_meta.sh
4.5
KB
-rwxr-xr-x
2024-03-10 20:38
Save
Rename
#!/bin/bash # SPDX-License-Identifier: GPL-2.0 local_dir="$(pwd)" root_dir=$local_dir/../.. mnt_dir=$(mktemp -d --tmp) on_exit() { iptables -D OUTPUT -m bpf --object-pinned ${mnt_dir}/bpf_prog -j ACCEPT umount ${mnt_dir} rm -r ${mnt_dir} } trap on_exit EXIT mount -t bpf bpf ${mnt_dir} ./per_socket_stats_example ${mnt_dir}/bpf_prog $1