From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steve Grubb Subject: Re: How do I get complete list of audit event types Date: Tue, 08 Apr 2014 16:41:02 -0400 Message-ID: <1679533.n9NnUncPTf@x2> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-audit-bounces@redhat.com Errors-To: linux-audit-bounces@redhat.com To: linux-audit@redhat.com List-Id: linux-audit@redhat.com On Tuesday, April 08, 2014 10:53:40 AM Satish Chandra Kilaru wrote: > Hi > > I want to understand the logs in /var/log/audit/audit.log. Where can I get > complete list of audit event types ausearch -m help 2>&1 | tr ' ' '\n' | egrep '^[A-Z]' | egrep -v 'ALL|Valid' | sort > and what they mean? Each event type has some comment in the header files /usr/include/libaudit.h and /usr/include/linux/audit.h. There is also some documentation here: https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Security_Guide/sec-Understanding_Audit_Log_Files.html And I want to think some other distros have docs as well. -Steve