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 /
powerpc /
[ HOME SHELL ]
Name
Size
Permission
Action
aux_syscalls.stp
4.85
KB
-rw-r--r--
sysc_compat_clock_settime.stp
1.55
KB
-rw-r--r--
sysc_compat_fadvise64.stp
5.12
KB
-rw-r--r--
sysc_compat_fallocate.stp
2.59
KB
-rw-r--r--
sysc_compat_ftruncate64.stp
1.54
KB
-rw-r--r--
sysc_compat_get_mempolicy.stp
1.79
KB
-rw-r--r--
sysc_compat_lookup_dcookie.stp
3.14
KB
-rw-r--r--
sysc_compat_mbind.stp
1.61
KB
-rw-r--r--
sysc_compat_readahead.stp
1.59
KB
-rw-r--r--
sysc_compat_set_mempolicy.stp
1.62
KB
-rw-r--r--
sysc_compat_timer_gettime.stp
1.56
KB
-rw-r--r--
sysc_compat_timer_settime.stp
1.77
KB
-rw-r--r--
sysc_compat_truncate64.stp
1.6
KB
-rw-r--r--
sysc_execve.stp
3.33
KB
-rw-r--r--
sysc_ipc.stp
1.47
KB
-rw-r--r--
sysc_mmap.stp
1.85
KB
-rw-r--r--
sysc_mmap2.stp
2.29
KB
-rw-r--r--
sysc_ppc32_timer_create.stp
1.65
KB
-rw-r--r--
sysc_ppc64_newuname.stp
1.58
KB
-rw-r--r--
sysc_ppc64_personality.stp
2.2
KB
-rw-r--r--
sysc_ppc64_sys32_stime.stp
1.36
KB
-rw-r--r--
sysc_ppc64_sys_stime.stp
1.33
KB
-rw-r--r--
sysc_ppc_rtas.stp
1.13
KB
-rw-r--r--
sysc_sigaltstack.stp
3.37
KB
-rw-r--r--
sysc_sys32_adjtimex.stp
1.27
KB
-rw-r--r--
sysc_sys32_getdents.stp
1.44
KB
-rw-r--r--
sysc_sys32_ptrace.stp
1.4
KB
-rw-r--r--
sysc_sys32_rt_sigpending.stp
1.52
KB
-rw-r--r--
sysc_sys32_rt_sigqueueinfo.stp
1.65
KB
-rw-r--r--
sysc_sys32_rt_sigtimedwait.stp
1.81
KB
-rw-r--r--
sysc_sys32_sched_rr_get_interv...
1.75
KB
-rw-r--r--
sysc_sys32_sched_setparam.stp
1.53
KB
-rw-r--r--
sysc_sys32_sendfile64.stp
1.54
KB
-rw-r--r--
sysc_sys32_sigreturn.stp
1.53
KB
-rw-r--r--
sysc_sys32_swapcontext.stp
1.78
KB
-rw-r--r--
sysc_sys32_sysinfo.stp
1.28
KB
-rw-r--r--
sysc_sys32_utimes.stp
1.39
KB
-rw-r--r--
sysc_sys64_time.stp
1.1
KB
-rw-r--r--
sysc_sysctl32.stp
2.3
KB
-rw-r--r--
syscall_num.stp
56.76
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sysc_sysctl32.stp
# compat_sys_sysctl ________________________________________ # # long compat_sys_sysctl(struct __sysctl_args32 __user *args) # # To match the ia64/s390/x86_64 versions (and to match the syscall variant of # this probe), the 'syscall.compat_sysctl' probe name is deprecated and # 'syscall.sysctl32' should be used instead. To use the old name without # changing your script, use the '--compatible 2.8' stap option. # @define _SYSCALL_SYSCTL32_NAME %( name = "sysctl" %) @define _SYSCALL_SYSCTL32_ARGSTR %( argstr = sprintf("%p", args) %) probe %( systemtap_v <= "2.8" %? syscall.compat_sysctl %: syscall.sysctl32 %) = dw_syscall.sysctl32 !, nd_syscall.sysctl32 ? {} probe %( systemtap_v <= "2.8" %? syscall.compat_sysctl.return %: syscall.sysctl32.return %) = dw_syscall.sysctl32.return !, nd_syscall.sysctl32.return ? {} # Note that these probes used to hook up to the ppc64 specific # compat_sys_sysctl() kernel function. However, that was just a # wrapper around sys_sysctl(). To avoid syscall nesting, we'll just # ignore compat_sys_sysctl(). # dw_compat_sys_sysctl ________________________________________ probe %( systemtap_v <= "2.8" %? dw_syscall.compat_sysctl %: dw_syscall.sysctl32 %) = %( systemtap_v <= "3.1" %? kernel.function("compat_sys_sysctl").call ? %: never %) { @_SYSCALL_SYSCTL32_NAME args = %( systemtap_v <= "3.1" %? $args %: 0 %) @_SYSCALL_SYSCTL32_ARGSTR } probe %( systemtap_v <= "2.8" %? dw_syscall.compat_sysctl.return %: dw_syscall.sysctl32.return %) = %( systemtap_v <= "3.1" %? kernel.function("compat_sys_sysctl").return ? %: never %) { @_SYSCALL_SYSCTL32_NAME retstr = %( systemtap_v <= "3.1" %? return_str(1, $return) %: "0" %) } # nd_compat_sys_sysctl ________________________________________ probe %( systemtap_v <= "2.8" %? nd_syscall.compat_sysctl %: nd_syscall.sysctl32 %) = %( systemtap_v <= "3.1" %? kprobe.function("compat_sys_sysctl") ? %: never %) { @_SYSCALL_SYSCTL32_NAME asmlinkage() args = %( systemtap_v <= "3.1" %? pointer_arg(1) %: 0 %) @_SYSCALL_SYSCTL32_ARGSTR } probe %( systemtap_v <= "2.8" %? nd_syscall.compat_sysctl.return %: nd_syscall.sysctl32.return %) = %( systemtap_v <= "3.1" %? kprobe.function("compat_sys_sysctl").return ? %: never %) { @_SYSCALL_SYSCTL32_NAME retstr = %( systemtap_v <= "3.1" %? returnstr(1) %: "0" %) }
Close