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.54
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 /
ia64 /
[ HOME SHELL ]
Name
Size
Permission
Action
aux_syscalls.stp
1.51
KB
-rw-r--r--
sysc_execve.stp
1.61
KB
-rw-r--r--
sysc_mmap.stp
1.69
KB
-rw-r--r--
sysc_mmap2.stp
1.63
KB
-rw-r--r--
sysc_sigaltstack.stp
1.69
KB
-rw-r--r--
sysc_sysctl32.stp
1.07
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : aux_syscalls.stp
# arch-specific requests of ptrace ___________________________ # %{ // Get _stp_val_array and _stp_lookup_* definitions. #include "linux/syscalls-common.h" static const _stp_val_array _stp_arch_ptrace_request_list[] = { V(PTRACE_SINGLEBLOCK), V(PTRACE_OLD_GETSIGINFO), V(PTRACE_OLD_SETSIGINFO), V(PTRACE_GETREGS), V(PTRACE_SETREGS), V(PTRACE_OLDSETOPTIONS), {0, NULL} }; %} function __arch_ptrace_request_str:string(request:long) %{ /* pure */ _stp_lookup_str(_stp_arch_ptrace_request_list, (unsigned long)STAP_ARG_request, STAP_RETVALUE, MAXSTRINGLEN); %} function _arch_ptrace_argstr(request, pid, addr, data) { if (request == @const("PTRACE_SINGLEBLOCK")) return sprintf("PTRACE_SINGLEBLOCK, %d, %#x, %s", pid, addr, _signal_name (data)) if (request == @const("PTRACE_GETREGS") || request == @const("PTRACE_SETREGS") || request == @const("PTRACE_OLD_GETSIGINFO") || request == @const("PTRACE_OLD_SETSIGINFO")) return sprintf("%s, %d, %#x, %p", __arch_ptrace_request_str(request), pid, addr, data) if (request == @const("PTRACE_OLDSETOPTIONS")) return sprintf("PTRACE_OLDSETOPTIONS, %d, %#x, %s", pid, addr, _ptrace_options_str(data)) } function _ptrace_return_arch_prctl_addr:long(request:long, addr:long, data:long) { return 0 } # arch-specific pipe() syscall support function _ia64_pipe0:long() %{ /* pure */ STAP_RETVALUE = CONTEXT->kregs ? CONTEXT->kregs->r8 : 0; %} function _ia64_pipe1:long() %{ /* pure */ STAP_RETVALUE = _stp_current_pt_regs()->r9; %}
Close