Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
systemtap /
examples /
apps /
[ HOME SHELL ]
Name
Size
Permission
Action
gmalloc_watch.meta
513
B
-rw-r--r--
gmalloc_watch.stp
261
B
-rwxr-xr-x
hello.php
21
B
-rw-r--r--
libguestfs_log.meta
652
B
-rw-r--r--
libguestfs_log.stp
449
B
-rwxr-xr-x
php-trace.meta
360
B
-rw-r--r--
php-trace.stp
2.54
KB
-rwxr-xr-x
stap_time.meta
1.01
KB
-rw-r--r--
stap_time.stp
1.66
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : libguestfs_log.stp
#!/usr/bin/stap global start_time, prev; function display_time () { now = gettimeofday_us () delta = (prev > 0 ) ? now - prev : 0 printf ("%18d (+%10d): ", now - start_time, delta) prev = now } probe begin { start_time = gettimeofday_us () prev = 0 printf ("%-18s (+%10s): %s\n", "# time_usec", "delta usec", "event") } probe process("/usr/lib*/libguestfs.so.0*").mark("*") { display_time() printf ("%s\n", $$name) }
Close