Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /opt/rh/gcc-toolset-11/root/usr/share/systemtap/tapset/linux/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/rh/gcc-toolset-11/root/usr/share/systemtap/tapset/linux/sysc_modify_ldt.stp
# modify_ldt _________________________________________________
# int sys_modify_ldt(int func, void __user *ptr, unsigned long bytecount)
#

@define _SYSCALL_MODIFY_LDT_NAME
%(
	name = "modify_ldt"
%)

@define _SYSCALL_MODIFY_LDT_ARGSTR
%(
	argstr = sprintf("%d, %p, %u", func, ptr_uaddr, bytecount)
%)

@define _SYSCALL_MODIFY_LDT_REGARGS
%(
	func = int_arg(1)
	ptr_uaddr = pointer_arg(2)
	bytecount = ulong_arg(3)
%)

@define _SYSCALL_MODIFY_LDT_REGARGS_STORE
%(
        if (@probewrite(func))
          set_int_arg(1, func)

	if (@probewrite(ptr_uaddr))
	  set_pointer_arg(2, ptr_uaddr)

	if (@probewrite(bytecount))
	  set_ulong_arg(3, bytecount)
%)

probe syscall.modify_ldt = dw_syscall.modify_ldt !, nd_syscall.modify_ldt ? {}
probe syscall.modify_ldt.return = dw_syscall.modify_ldt.return !,
                                  nd_syscall.modify_ldt.return ? {}

# dw_modify_ldt _____________________________________________________

probe dw_syscall.modify_ldt = kernel.function("sys_modify_ldt").call ?
{
	@_SYSCALL_MODIFY_LDT_NAME
	func = __int32($func)
	ptr_uaddr = $ptr
	bytecount = __ulong($bytecount)
	@_SYSCALL_MODIFY_LDT_ARGSTR
}
probe dw_syscall.modify_ldt.return = kernel.function("sys_modify_ldt").return ?
{
	@_SYSCALL_MODIFY_LDT_NAME
	@SYSC_RETVALSTR($return)
}

# nd_modify_ldt _____________________________________________________

probe nd_syscall.modify_ldt = nd1_syscall.modify_ldt!, nd2_syscall.modify_ldt!, tp_syscall.modify_ldt
  { }

probe nd1_syscall.modify_ldt = kprobe.function("sys_modify_ldt") ?
{
	@_SYSCALL_MODIFY_LDT_NAME
	asmlinkage()
	@_SYSCALL_MODIFY_LDT_REGARGS
	@_SYSCALL_MODIFY_LDT_ARGSTR
}

/* kernel 4.17+ */
probe nd2_syscall.modify_ldt = kprobe.function(@arch_syscall_prefix "sys_modify_ldt") ?
{
	__set_syscall_pt_regs(pointer_arg(1))
	@_SYSCALL_MODIFY_LDT_NAME
	@_SYSCALL_MODIFY_LDT_REGARGS
	@_SYSCALL_MODIFY_LDT_ARGSTR
},
{
        %( @_IS_SREG_KERNEL %? @_SYSCALL_MODIFY_LDT_REGARGS_STORE %)
}

/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.modify_ldt = kernel.trace("sys_enter")
{
	__set_syscall_pt_regs($regs)
	@__syscall_compat_gate(@const("__NR_modify_ldt"), @const("__NR_compat_modify_ldt"))
	@_SYSCALL_MODIFY_LDT_NAME
	@_SYSCALL_MODIFY_LDT_REGARGS
	@_SYSCALL_MODIFY_LDT_ARGSTR
},
{
        %( @_IS_SREG_KERNEL %? @_SYSCALL_MODIFY_LDT_REGARGS_STORE %)
}

probe nd_syscall.modify_ldt.return = nd1_syscall.modify_ldt.return!, nd2_syscall.modify_ldt.return!, tp_syscall.modify_ldt.return
  { }
  
probe nd1_syscall.modify_ldt.return = kprobe.function("sys_modify_ldt").return ?
{
	@_SYSCALL_MODIFY_LDT_NAME
	@SYSC_RETVALSTR(returnval())
}

/* kernel 4.17+ */
probe nd2_syscall.modify_ldt.return = kprobe.function(@arch_syscall_prefix "sys_modify_ldt").return ?
{
	@_SYSCALL_MODIFY_LDT_NAME
	@SYSC_RETVALSTR(returnval())
}
 
/* kernel 3.5+, but undesirable because it affects all syscalls */
probe tp_syscall.modify_ldt.return = kernel.trace("sys_exit")
{
	__set_syscall_pt_regs($regs)
	@__syscall_compat_gate(@const("__NR_modify_ldt"), @const("__NR_compat_modify_ldt"))
	@_SYSCALL_MODIFY_LDT_NAME
	@SYSC_RETVALSTR($ret)
}

Spamworldpro Mini