LittleDemon WebShell


Linux hosting5.siteguarding.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
Path : /usr/share/systemtap/examples/general/
File Upload :
Command :
Current File : //usr/share/systemtap/examples/general/key.stp

#!/usr/bin/stap

# Useless, but amusing. Based on an idea I saw on a
# dtrace site. (wav files are from emacs).

// KEY_ENTER = 28
probe kernel.function("kbd_event") {
  if ($event_type == 1 && $value) {
    if ($event_code == 28)
      system("play return.wav &> /dev/null")
    else
      system("play click.wav &> /dev/null")
  }
}

probe begin {
  printf("TYPEWRITER ON\n")
}

probe end {
  printf("DONE\n")
}

LittleDemon - FACEBOOK
[ KELUAR ]