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 /
tapset /
linux /
i386 /
[ HOME SHELL ]
Name
Size
Permission
Action
aux_syscalls.stp
2.94
KB
-rw-r--r--
sysc_execve.stp
1.94
KB
-rw-r--r--
sysc_get_thread_area.stp
2.31
KB
-rw-r--r--
sysc_iopl.stp
2.4
KB
-rw-r--r--
sysc_ipc.stp
1.49
KB
-rw-r--r--
sysc_mmap2.stp
2.42
KB
-rw-r--r--
sysc_set_thread_area.stp
2.24
KB
-rw-r--r--
sysc_set_zone_reclaim.stp
1.53
KB
-rw-r--r--
sysc_sigaltstack.stp
2.63
KB
-rw-r--r--
sysc_vm86.stp
1.05
KB
-rw-r--r--
sysc_vm86old.stp
1.13
KB
-rw-r--r--
syscall_num.stp
28.63
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sysc_set_zone_reclaim.stp
# set_zone_reclaim ___________________________________________ /* * asmlinkage long * sys_set_zone_reclaim(unsigned int node, * unsigned int zone, * unsigned int state) */ @define _SYSCALL_SET_ZONE_RECLAIM_NAME %( name = "set_zone_reclaim" %) @define _SYSCALL_SET_ZONE_RECLAIM_ARGSTR %( argstr = sprintf("%d, %d, %d", node, zone, state) %) probe syscall.set_zone_reclaim = dw_syscall.set_zone_reclaim !, nd_syscall.set_zone_reclaim ? {} probe syscall.set_zone_reclaim.return = dw_syscall.set_zone_reclaim.return !, nd_syscall.set_zone_reclaim.return ? {} # dw_set_zone_reclaim _____________________________________________________ probe dw_syscall.set_zone_reclaim = kernel.function("sys_set_zone_reclaim") ? { @_SYSCALL_SET_ZONE_RECLAIM_NAME node = $node zone = $zone state = $state @_SYSCALL_SET_ZONE_RECLAIM_ARGSTR } probe dw_syscall.set_zone_reclaim.return = kernel.function("sys_set_zone_reclaim").return ? { @_SYSCALL_SET_ZONE_RECLAIM_NAME @SYSC_RETVALSTR($return) } # nd_set_zone_reclaim _____________________________________________________ probe nd_syscall.set_zone_reclaim = kprobe.function("sys_set_zone_reclaim") ? { @_SYSCALL_SET_ZONE_RECLAIM_NAME asmlinkage() node = uint_arg(1) zone = uint_arg(2) state = uint_arg(3) @_SYSCALL_SET_ZONE_RECLAIM_ARGSTR } probe nd_syscall.set_zone_reclaim.return = kprobe.function("sys_set_zone_reclaim").return ? { @_SYSCALL_SET_ZONE_RECLAIM_NAME @SYSC_RETVALSTR(returnval()) }
Close