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 /
share /
doc /
bpfcc-tools /
examples /
lua /
Delete
Unzip
Name
Size
Permission
Date
Action
bashreadline.c
476
B
-rw-r--r--
2023-12-08 15:36
bashreadline.lua
1.08
KB
-rwxr-xr-x
2023-12-08 15:36
kprobe-latency.lua
2.46
KB
-rwxr-xr-x
2023-12-08 15:36
kprobe-write.lua
1.1
KB
-rwxr-xr-x
2023-12-08 15:36
memleak.lua
6.05
KB
-rwxr-xr-x
2023-12-08 15:36
offcputime.lua
3.04
KB
-rwxr-xr-x
2023-12-08 15:36
sock-parse-dns.lua
1.65
KB
-rwxr-xr-x
2023-12-08 15:36
sock-parse-http.lua
1.98
KB
-rwxr-xr-x
2023-12-08 15:36
sock-proto.lua
1.4
KB
-rwxr-xr-x
2023-12-08 15:36
sock-protolen.lua
1.5
KB
-rwxr-xr-x
2023-12-08 15:36
strlen_count.lua
1.27
KB
-rwxr-xr-x
2023-12-08 15:36
task_switch.lua
1.38
KB
-rwxr-xr-x
2023-12-08 15:36
tracepoint-offcputime.lua
2.59
KB
-rwxr-xr-x
2023-12-08 15:36
uprobe-readline-perf.lua
1.88
KB
-rwxr-xr-x
2023-12-08 15:36
uprobe-readline.lua
1.52
KB
-rwxr-xr-x
2023-12-08 15:36
uprobe-tailkt.lua
2.5
KB
-rwxr-xr-x
2023-12-08 15:36
usdt_ruby.lua
1.19
KB
-rwxr-xr-x
2023-12-08 15:36
Save
Rename
#!/usr/bin/env bcc-lua --[[ Copyright 2016 GitHub, Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ]] local ffi = require("ffi") return function(BPF) local b = BPF:new{src_file="bashreadline.c", debug=0} b:attach_uprobe{name="/bin/bash", sym="readline", fn_name="printret", retprobe=true} local function print_readline(cpu, event) print("%-9s %-6d %s" % {os.date("%H:%M:%S"), tonumber(event.pid), ffi.string(event.str)}) end b:get_table("events"):open_perf_buffer(print_readline, "struct { uint64_t pid; char str[80]; }", nil) print("%-9s %-6s %s" % {"TIME", "PID", "COMMAND"}) b:perf_buffer_poll_loop() end