1*bb75b0d5SLexi Winter/* 2*bb75b0d5SLexi Winter * Copyright (c) 2006, 2019 Robert N. M. Watson 3*bb75b0d5SLexi Winter * All rights reserved. 4*bb75b0d5SLexi Winter * 5*bb75b0d5SLexi Winter * This software was developed in part by BAE Systems, the University of 6*bb75b0d5SLexi Winter * Cambridge Computer Laboratory, and Memorial University under DARPA/AFRL 7*bb75b0d5SLexi Winter * contract FA8650-15-C-7558 ("CADETS"), as part of the DARPA Transparent 8*bb75b0d5SLexi Winter * Computing (TC) research program. 9*bb75b0d5SLexi Winter * 10*bb75b0d5SLexi Winter * Redistribution and use in source and binary forms, with or without 11*bb75b0d5SLexi Winter * modification, are permitted provided that the following conditions 12*bb75b0d5SLexi Winter * are met: 13*bb75b0d5SLexi Winter * 1. Redistributions of source code must retain the above copyright 14*bb75b0d5SLexi Winter * notice, this list of conditions and the following disclaimer. 15*bb75b0d5SLexi Winter * 2. Redistributions in binary form must reproduce the above copyright 16*bb75b0d5SLexi Winter * notice, this list of conditions and the following disclaimer in the 17*bb75b0d5SLexi Winter * documentation and/or other materials provided with the distribution. 18*bb75b0d5SLexi Winter * 19*bb75b0d5SLexi Winter * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 20*bb75b0d5SLexi Winter * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21*bb75b0d5SLexi Winter * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22*bb75b0d5SLexi Winter * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 23*bb75b0d5SLexi Winter * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24*bb75b0d5SLexi Winter * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25*bb75b0d5SLexi Winter * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26*bb75b0d5SLexi Winter * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27*bb75b0d5SLexi Winter * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28*bb75b0d5SLexi Winter * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29*bb75b0d5SLexi Winter * SUCH DAMAGE. 30*bb75b0d5SLexi Winter */ 31*bb75b0d5SLexi Winter 32*bb75b0d5SLexi Wintercomment = "OpenBSM auditing utilities" 33*bb75b0d5SLexi Winter 34*bb75b0d5SLexi Winterdesc = <<EOD 35*bb75b0d5SLexi WinterSecurity Event Audit is a facility to provide fine-grained, configurable 36*bb75b0d5SLexi Winterlogging of security-relevant events, and is intended to meet the requirements 37*bb75b0d5SLexi Winterof the Common Criteria (CC) Common Access Protection Profile (CAPP) evaluation. 38*bb75b0d5SLexi WinterThe audit facility implements the de facto industry standard BSM API, file 39*bb75b0d5SLexi Winterformats, and command line interface, first found in the Solaris operating 40*bb75b0d5SLexi Wintersystem. 41*bb75b0d5SLexi Winter 42*bb75b0d5SLexi WinterThis package provides the auditing daemon auditd(8) and various utilities 43*bb75b0d5SLexi Winterused to manage the auditing system and work with audit data. 44*bb75b0d5SLexi WinterEOD 45