dd if=/dev/dsp | ssh -c arcfour -C username@host dd of=/dev/dsp
This will output the sound from your microphone port to the ssh target computer’s speaker port. The sound quality is bad, so you will hear a lot of hissing,but it works.
dd if=/dev/dsp | ssh -c arcfour -C username@host dd of=/dev/dsp
This will output the sound from your microphone port to the ssh target computer’s speaker port. The sound quality is bad, so you will hear a lot of hissing,This will allow you to be notified instantly via email whenever someone logs into your server as root.
ssh into your serversu to root
sudo -i
or su -
cd to /rootadd the following to the end of the file
echo 'ALERT - Root Shell Access (YourserverName) on:' `date` `who` | mail -s "Alert: Root Access from `who | cut -d"(" -f2 | cut -d")" -f1`" you@yourdomain.com
Replace YourServerName with the name of your server.
Replace you@yourdomain.com with the email address you want the alerts sent to.
:x to save and exit
logout from your server, close the connection and log back in.
You will receive an email alert of the root login after a few minutes.