⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.120
Server IP:
97.74.87.16
Server:
Linux 16.87.74.97.host.secureserver.net 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
share
/
systemtap
/
tapset
/
View File Name :
libperl5.32.1-64.stp
/* This probe will fire when the perl script enters a subroutine. */ probe perl.sub.call = process("/usr/lib64/libperl.so.5.32").mark("sub__entry") { sub = user_string($arg1) filename = user_string($arg2) lineno = $arg3 package = user_string($arg4) } /* This probe will fire when the return from a subroutine has been hit. */ probe perl.sub.return = process("/usr/lib64/libperl.so.5.32").mark("sub__return") { sub = user_string($arg1) filename = user_string($arg2) lineno = $arg3 package = user_string($arg4) } /* This probe will fire when the Perl interperter changes state. */ probe perl.phase.change = process("/usr/lib64/libperl.so.5.32").mark("phase__change") { newphase = user_string($arg1) oldphase = user_string($arg2) } /* Fires when Perl has successfully loaded an individual file. */ probe perl.loaded.file = process("/usr/lib64/libperl.so.5.32").mark("loaded__file") { filename = user_string($arg1) } /* Fires when Perl is about to load an individual file. */ probe perl.loading.file = process("/usr/lib64/libperl.so.5.32").mark("loading__file") { filename = user_string($arg1) } /* Traces the execution of each opcode in the Perl runloop. */ probe perl.op.entry = process("/usr/lib64/libperl.so.5.32").mark("op__entry") { opname = user_string($arg1) }