Linux vps-4302913.novaexata.com.br 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.156
166 Domain
7.3.33
wwnova
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
systemtap /
examples /
lwtools /
[ HOME SHELL ]
Name
Size
Permission
Action
README
107
B
-rw-r--r--
accept2close-nd.8
1.39
KB
-rw-r--r--
accept2close-nd.meta
640
B
-rw-r--r--
accept2close-nd.stp
1.76
KB
-rwxr-xr-x
accept2close-nd.txt
3.31
KB
-rw-r--r--
biolatency-nd.8
1.63
KB
-rw-r--r--
biolatency-nd.meta
663
B
-rw-r--r--
biolatency-nd.stp
2.02
KB
-rwxr-xr-x
biolatency-nd_example.txt
7.19
KB
-rw-r--r--
bitesize-nd.8
1.13
KB
-rw-r--r--
bitesize-nd.meta
491
B
-rw-r--r--
bitesize-nd.stp
1.51
KB
-rwxr-xr-x
bitesize-nd_example.txt
3.35
KB
-rw-r--r--
execsnoop-nd.8
1.21
KB
-rw-r--r--
execsnoop-nd.meta
610
B
-rw-r--r--
execsnoop-nd.stp
1.25
KB
-rwxr-xr-x
execsnoop-nd_example.txt
2.52
KB
-rw-r--r--
fslatency-nd.8
1.88
KB
-rw-r--r--
fslatency-nd.meta
700
B
-rw-r--r--
fslatency-nd.stp
3.81
KB
-rwxr-xr-x
fslatency-nd_example.txt
13.07
KB
-rw-r--r--
fsslower-nd.8
1.71
KB
-rw-r--r--
fsslower-nd.meta
662
B
-rw-r--r--
fsslower-nd.stp
3.55
KB
-rwxr-xr-x
fsslower-nd_example.txt
1.89
KB
-rw-r--r--
killsnoop-nd.8
1.1
KB
-rw-r--r--
killsnoop-nd.meta
424
B
-rw-r--r--
killsnoop-nd.stp
1.25
KB
-rwxr-xr-x
killsnoop-nd_example.txt
1.86
KB
-rw-r--r--
opensnoop-nd.8
1.24
KB
-rw-r--r--
opensnoop-nd.meta
397
B
-rw-r--r--
opensnoop-nd.stp
1
KB
-rwxr-xr-x
opensnoop-nd_example.txt
1.1
KB
-rw-r--r--
rwtime-nd.8
1.12
KB
-rw-r--r--
rwtime-nd.meta
449
B
-rw-r--r--
rwtime-nd.stp
1.56
KB
-rwxr-xr-x
rwtime-nd_example.txt
4.09
KB
-rw-r--r--
syscallbypid-nd.8
1.06
KB
-rw-r--r--
syscallbypid-nd.meta
447
B
-rw-r--r--
syscallbypid-nd.stp
1.07
KB
-rwxr-xr-x
syscallbypid-nd_example.txt
9.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : killsnoop-nd_example.txt
Examples of killsnoop-nd.stp, the Linux SystemTap version. killsnoop-nd.stp traces signals, including those sent by the kill(1) command. For example: # ./killsnoop-nd.stp FROM COMMAND SIG TO RESULT 14163 w 0 11962 0 14163 w 0 12040 0 14163 w 0 14152 0 14152 bash 9 12345 -3 14152 bash 9 14152 0 ^C13914 killsnoop-nd.st 15 14147 0 The output begins by showing the w(1) command sending three signal 0's to different processes: signal 0, and the return value, is used as an aliveness check. Then bash sends a signal 9 (SIGKILL) to PID 12345, which doesn't exist, and returns an error (-3). This is followed by a successful signal 9. These two were issued using "kill -9". Finally, I hit Ctrl-C to end this example, and this was caught and shown after the "^C". Signal 15 (SIGTERM)? I thought Ctrl-C issued signal 2 (SIGINT)... For a quick lookup of signal numbers to names, you can use the kill(1) bash builtin with -l. Eg: bash$ kill -l 1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL 5) SIGTRAP 6) SIGABRT 7) SIGBUS 8) SIGFPE 9) SIGKILL 10) SIGUSR1 11) SIGSEGV 12) SIGUSR2 13) SIGPIPE 14) SIGALRM 15) SIGTERM 16) SIGSTKFLT 17) SIGCHLD 18) SIGCONT 19) SIGSTOP 20) SIGTSTP 21) SIGTTIN 22) SIGTTOU 23) SIGURG 24) SIGXCPU 25) SIGXFSZ 26) SIGVTALRM 27) SIGPROF 28) SIGWINCH 29) SIGIO 30) SIGPWR 31) SIGSYS 34) SIGRTMIN 35) SIGRTMIN+1 36) SIGRTMIN+2 37) SIGRTMIN+3 38) SIGRTMIN+4 39) SIGRTMIN+5 40) SIGRTMIN+6 41) SIGRTMIN+7 42) SIGRTMIN+8 43) SIGRTMIN+9 44) SIGRTMIN+10 45) SIGRTMIN+11 46) SIGRTMIN+12 47) SIGRTMIN+13 48) SIGRTMIN+14 49) SIGRTMIN+15 50) SIGRTMAX-14 51) SIGRTMAX-13 52) SIGRTMAX-12 53) SIGRTMAX-11 54) SIGRTMAX-10 55) SIGRTMAX-9 56) SIGRTMAX-8 57) SIGRTMAX-7 58) SIGRTMAX-6 59) SIGRTMAX-5 60) SIGRTMAX-4 61) SIGRTMAX-3 62) SIGRTMAX-2 63) SIGRTMAX-1 64) SIGRTMAX
Close