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 :  /proc/thread-self/root/opt/rh/gcc-toolset-11/root/usr/share/systemtap/examples/general/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/thread-self/root/opt/rh/gcc-toolset-11/root/usr/share/systemtap/examples/general/sizeof.stp
#!/opt/rh/gcc-toolset-11/root/usr/bin/stap

# Usage:   sizeof.stp TYPENAME
#          sizeof.stp TYPENAME kernelmodule
#          sizeof.stp TYPENAME /usr/bin/executable
#          sizeof.stp TYPENAME kernel<include/linux/someheader.h>
#          sizeof.stp TYPENAME </usr/include/someheader.h>

probe oneshot {
  %( $# > 1 %?
     printf("type %s in %s byte-size: %d\n", @1, @2,
	    @cast_module_sizeof(@2, @1))
  %:
     printf("type %s byte-size: %d\n", @1,
	    @cast_module_sizeof("kernel", @1))
  %)
}

Spamworldpro Mini