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 /
virtualization /
[ HOME SHELL ]
Name
Size
Permission
Action
kvm_service_time.meta
1.18
KB
-rw-r--r--
kvm_service_time.stp
2.71
KB
-rwxr-xr-x
kvm_service_time.txt
3.14
KB
-rw-r--r--
qemu_count.meta
623
B
-rw-r--r--
qemu_count.stp
465
B
-rwxr-xr-x
qemu_io.meta
695
B
-rw-r--r--
qemu_io.stp
781
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : qemu_count.stp
#!/usr/bin/stap # # Copyright (C) 2011 Red Hat, Inc. # Written by William Cohen <wcohen@redhat.com> # # The qemu_count.stp script tallies the number of times each of the # user-space qemu probepoints is encountered. When the script exits, # it prints a list of the number of times each user-space qemu # probepoint is encountered. global counts probe qemu.*.*.*?, qemu.kvm.*? {counts[pn()]++} probe end { foreach(n+ in counts) printf ("%s = %d\n", n, counts[n]) }
Close