How to monitor system authentication logs in Ubuntu
A significant line of protection against data breaches and other vulnerabilities within your system is
monitoring. Authentication management monitors the system after you configure the users.
You can find all authentication attempts in a discrete file in /var/log/auth.log.
For example:
sudo less /var/log/auth.log
Results would look like the following:
Feb 18 09:19:07 myserver sshd[4792]: pam_unix(sshd:auth): authentication failure;
Feb 18 09:19:09 myserver sshd[4792]: Failed password for x
Feb 18 12:21:32 myserver su[3484]: pam_unix(su:session): session open
Feb 18 09:19:12 myserver sshd[4792]: Failed password for x from 20.20.20.20 port 2158 ssh2
last
command
last
commandWhen it comes to reviewing login attempts, you can review the most recent by using the last
command.
The last
command provides how and when they logged in and out.
last
The results would look like the following:
var pts/1 192.168.1.0 Thu Feb 18 16:22 still logged in
root pts/1 192.168.1.0 Thu Feb 18 19:37 - 19:37 (00:00)
root pts/0 192.168.1.0 Thu Feb 18 19:55 still logged in
root pts/0 192.168.1.0 Thu Feb 18 20:05 - 20:15 (00:10)
root pts/0 192.168.1.0 Thu Feb 18 20:10 - 20:10 (00:00)
var pts/0 192.168.1.0 Thu Feb 18 20:20 - 20:25 (00:05)
Different services and applications are logged into a log file in the /var/log directory, which includes the following files:
- utmp: Shows the terminal, logout time, system events, current status of the system, and system boot time.
- wtmp: Gives historical data of utmp.
- btmp: Records only failed login attempts.
You can use the last
command to read the content of each file.
last -f /var/log/utmp
last -f /var/log/wtmp
last -f /var/log/btmp
lastlog
command
lastlog
commandThe lastlog
command formats and prints the content of the last login in var/log/lastlog file. It displays the following:
- username
- port
- last login time.
The command sorts the output by the user order in /etc/passwd.
The results would look like the following:
Username Port From Latest
root pts/1 192.168.1.0 Thu feb 18 19:37:18 +0000 2021
will **Never logged in**
var **Never logged in**
sys **Never logged in**
test **Never logged in**
rack **Never logged in**
Updated 12 months ago