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 /
memory /
[ HOME SHELL ]
Name
Size
Permission
Action
glibc-malloc.meta
381
B
-rw-r--r--
glibc-malloc.stp
2.43
KB
-rw-r--r--
hugepage_clear_delays.meta
946
B
-rw-r--r--
hugepage_clear_delays.stp
483
B
-rwxr-xr-x
hugepage_collapse.meta
718
B
-rw-r--r--
hugepage_collapse.stp
159
B
-rwxr-xr-x
hugepage_cow_delays.meta
1.08
KB
-rw-r--r--
hugepage_cow_delays.stp
475
B
-rwxr-xr-x
hugepage_split.meta
756
B
-rw-r--r--
hugepage_split.stp
153
B
-rwxr-xr-x
hw_watch_addr.meta
787
B
-rw-r--r--
hw_watch_addr.stp
167
B
-rwxr-xr-x
hw_watch_addr.tcl
97
B
-rw-r--r--
hw_watch_sym.meta
715
B
-rw-r--r--
hw_watch_sym.stp
167
B
-rwxr-xr-x
hw_watch_sym.tcl
97
B
-rw-r--r--
kmalloc-top
3.8
KB
-rwxr-xr-x
kmalloc-top.meta
695
B
-rw-r--r--
last_100_frees.meta
420
B
-rw-r--r--
last_100_frees.stp
803
B
-rwxr-xr-x
last_100_frees.tcl
79
B
-rw-r--r--
last_100_frees.txt
774
B
-rw-r--r--
mmanonpage.meta
1.2
KB
-rw-r--r--
mmanonpage.stp
1.77
KB
-rwxr-xr-x
mmfilepage.meta
929
B
-rw-r--r--
mmfilepage.stp
3.47
KB
-rwxr-xr-x
mmreclaim.meta
606
B
-rw-r--r--
mmreclaim.stp
5.11
KB
-rwxr-xr-x
mmwriteback.meta
1008
B
-rw-r--r--
mmwriteback.stp
1.92
KB
-rwxr-xr-x
numa_faults.meta
702
B
-rw-r--r--
numa_faults.stp
973
B
-rwxr-xr-x
numa_faults.txt
1.67
KB
-rw-r--r--
overcommit.meta
484
B
-rw-r--r--
overcommit.stp
217
B
-rwxr-xr-x
pfaults.meta
744
B
-rw-r--r--
pfaults.stp
875
B
-rwxr-xr-x
pfaults.txt
558
B
-rw-r--r--
vm.tracepoints.meta
608
B
-rw-r--r--
vm.tracepoints.stp
414
B
-rwxr-xr-x
vm.tracepoints.txt
557
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mmwriteback.stp
#!/usr/bin/stap global traced_pid, command global pgout, bgwriteout, kupdate function log_event:long () { return (!traced_pid || traced_pid == pid()) } probe kernel.trace("balance_dirty_pages") !, # v3.2+ kernel.trace("mm_balancedirty_writeout") !, # RHEL6(2.6.32) kernel.trace("mm_pdflush_bgwriteout") # RHEL5(2.6.18) { if (!log_event()) next bgwriteout[pid()] <<< (@defined($dirtied) ? $dirtied : (@defined($written) ? $written : $count)) command[pid()] = execname() } probe kernel.trace("writeback_pages_written") !, # v2.6.36+ # & RHEL6(2.6.32) kernel.trace("mm_pdflush_kupdate") # RHEL5(2.6.18) { if (!log_event()) next kupdate[pid()] <<< (@defined($pages_written) ? $pages_written : $count) command[pid()] = execname() } probe kernel.trace("mm_vmscan_writepage") !, # v2.6.36+ # & RHEL6(2.6.32) kernel.trace("mm_pagereclaim_pgout") # RHEL5(2.6.18) # & RHEL6(2.6.32) { if (!log_event()) next pgout[pid()] <<< 1 command[pid()] = execname() } probe begin { printf("Starting data collection\n") if (target()) printf("mode Specific Pid, traced pid: %d\n\n", target()) else printf("mode - All Pids\n\n") } probe end, error { printf("Terminating data collection\n") printf("%-16s %6s %10s %10s %10s %10s %11s\n", "", "", "Pdflush", "Pdflush", "Kupdate", "Kupdate", "Pgout") printf("%-16s %6s %10s %10s %10s %10s %11s\n", "Command", "Pid", "count", "sum", "count", "sum", "count") printf("%-16s %6s %10s %10s %10s %10s %11s\n", "-------", "---", "-------", "-------", "-------", "-------", "-----") foreach (pid in command-) printf("%-16s %6d %10d %10d %10d %10d %11d\n", command[pid], pid, @count(bgwriteout[pid]), (@count(bgwriteout[pid]) ? @sum(bgwriteout[pid]) : 0), @count(kupdate[pid]), (@count(kupdate[pid]) ? @sum(kupdate[pid]) : 0), @count(pgout[pid])) }
Close