auditing:view_the_audit_log
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
auditing:view_the_audit_log [2016/07/16 09:27] – peter | auditing:view_the_audit_log [2019/11/26 20:13] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Auditing - View the audit log ====== | ||
- | |||
- | Use **ausearch** to view the audit log. | ||
- | |||
- | |||
- | ===== View the audit log against a file ===== | ||
- | |||
- | For example, to see the audit log against the /etc/passwd file (assuming that a rule had been added to watch the /etc/passwd file): | ||
- | |||
- | <code bash> | ||
- | sudo ausearch -f /etc/passwd | ||
- | </ | ||
- | |||
- | Result: | ||
- | |||
- | < | ||
- | <no matches> | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | < | ||
- | time-> | ||
- | type=PATH msg=audit(1419215956.471: | ||
- | type=CWD msg=audit(1419215956.471: | ||
- | type=SYSCALL msg=audit(1419215956.471: | ||
- | </ | ||
- | |||
- | * **time** ; is when the audit is done. | ||
- | * **name** ; is the object name to be audited. | ||
- | * **cwd** ; is the current directory. | ||
- | * **syscall** ; is related syscall. | ||
- | * **auid** ; is the audit user ID. | ||
- | * **uid** and **gid** ; are User ID and Group ID of the user who access the file. | ||
- | * **comm** ; is the command that the user is used to access the file. | ||
- | * **exe** ; is the location of the command of comm parameter above. | ||
- | |||
- | |||
- | |||
- | This is how auditd records the activity to the /etc/passwd file when a new user is added: | ||
- | |||
- | < | ||
- | time-> | ||
- | type=PATH msg=audit(1419222323.628: | ||
- | type=PATH msg=audit(1419222323.628: | ||
- | type=CWD msg=audit(1419222323.628: | ||
- | type=SYSCALL msg=audit(1419222323.628: | ||
- | </ | ||
- | |||
- | As e can be seen, that at the particular time, /etc/passwd was accessed by user root (uid = 0 and gid = 0) from directory /root (cwd = / | ||
- | |||
- | |||
- | |||
- | ===== View the audit log against a directory ===== | ||
- | |||
- | Assuming auditd had been configured to watch directory named / | ||
- | |||
- | If this was a new directory then using **ausearch** would find nothing. | ||
- | |||
- | <code bash> | ||
- | sudo ausearch / | ||
- | </ | ||
- | |||
- | Result: | ||
- | |||
- | < | ||
- | No record | ||
- | </ | ||
- | |||
- | Otherwise how would auditd log the root account listing the /production directory using the **ls* command? | ||
- | |||
- | <code bash> | ||
- | sudo ls /production | ||
- | </ | ||
- | |||
- | Result: | ||
- | |||
- | < | ||
- | time-> | ||
- | type=PATH msg=audit(1419232708.344: | ||
- | type=CWD msg=audit(1419232708.344: | ||
- | type=SYSCALL msg=audit(1419232708.344: | ||
- | </ | ||
- | |||
- | This shows that the /production folder was looked at by the root account (uid=0 gid=0) using the ls command (comm = ls) and the ls command is located in the /bin/ls folder. | ||
- | |||
auditing/view_the_audit_log.1468661257.txt.gz · Last modified: 2020/07/15 09:30 (external edit)