Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Warning

This article is just starting.

Some topics,

Email Login Events

  • Alert me when a sudo capable account logs in.
  • Alert me when serveradmin logs in.
  • Alert me when accounts fail sudo attempts.

Integrity Check

File Permissions - World Writable

Email Login Events

On servers that are managed by only a few administrators it is often useful to know if someone has logged in.

...

First ensure your system is setup to send emails.

Here is the start of the contents of the login notification script,

...

Code Block
languagebash
linenumberstrue
... more stuff up here ...
umask 022

echo "User $LOGNAME logged into $HOSTNAME on $(date)" | mail -aFrom:sentry@bonsaiframework.com -s "Sentry Alert Login $LOGNAME@$HOSTNAME" bhitch@imagecomics.com

Now every login will result in an alert.

...