⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
sbin
/
Edit File: swapin.bt
#!/usr/bin/env bpftrace /* * swapin - Show swapins by process. * * See BPF Performance Tools, Chapter 7, for an explanation of this tool. * * Copyright (c) 2019 Brendan Gregg. * Licensed under the Apache License, Version 2.0 (the "License"). * This was originally created for the BPF Performance Tools book * published by Addison Wesley. ISBN-13: 9780136554820 * When copying or porting, include this comment. * * 26-Jan-2019 Brendan Gregg Created this. * 31-May-2024 Rong Tao Add folio support. */ config = { missing_probes = "ignore" } /** * kernel commit c9bdf768dd93("mm: convert swap_readpage() to swap_read_folio()") * convert swap_readpage() to swap_read_folio(), try attaching two kprobes, * only one will succeed and the other will be silently ignored. */ kprobe:swap_readpage, kprobe:swap_read_folio { @[comm, pid] = count(); } interval:s:1 { time(); print(@); clear(@); }
Simpan