Date: Tue, 27 Mar 2018 23:20:33 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465770 - in head/security: . setaudit Message-ID: <201803272320.w2RNKXj3040608@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Tue Mar 27 23:20:33 2018 New Revision: 465770 URL: https://svnweb.freebsd.org/changeset/ports/465770 Log: Add security/setaudit: Tool to specify audit configurations on a process With setaudit it is possible to specify audit configurations on a process directly at the runtime. All audit events are redirected to the auditd(8), an audit log management daemon. Example of enabling all exe related audit events performed by a command and its child processes: # setaudit -m ex command WWW: https://github.com/csjayp/setaudit PR: 226627 Submitted by: Mateusz Piotrowski <0mp@FreeBSD.org> Added: head/security/setaudit/ head/security/setaudit/Makefile (contents, props changed) head/security/setaudit/distinfo (contents, props changed) head/security/setaudit/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Mar 27 22:29:00 2018 (r465769) +++ head/security/Makefile Tue Mar 27 23:20:33 2018 (r465770) @@ -1183,6 +1183,7 @@ SUBDIR += secpanel SUBDIR += sectok SUBDIR += secure_delete + SUBDIR += setaudit SUBDIR += sguil SUBDIR += sha SUBDIR += sha1collisiondetection Added: head/security/setaudit/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/setaudit/Makefile Tue Mar 27 23:20:33 2018 (r465770) @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= setaudit +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.3 +CATEGORIES= security + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Tool to specify audit configurations on a process + +LICENSE= BSD2CLAUSE + +USE_GITHUB= yes +GH_ACCOUNT= csjayp + +PLIST_FILES= bin/setaudit \ + man/man8/setaudit.8.gz +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/setaudit + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/security/setaudit/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/setaudit/distinfo Tue Mar 27 23:20:33 2018 (r465770) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521772004 +SHA256 (csjayp-setaudit-v1.0.3_GH0.tar.gz) = e94787dca51b8b3986a391e3ea402f84946f151bf419611aac5bf6568ae32c0a +SIZE (csjayp-setaudit-v1.0.3_GH0.tar.gz) = 2901 Added: head/security/setaudit/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/setaudit/pkg-descr Tue Mar 27 23:20:33 2018 (r465770) @@ -0,0 +1,12 @@ +With setaudit it is possible to specify audit configurations on a process +directly at the runtime. + +All audit events are redirected to the auditd(8), an audit log management +daemon. + +Example of enabling all exe related audit events performed by a command and its +child processes: + + # setaudit -m ex command + +WWW: https://github.com/csjayp/setaudit
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803272320.w2RNKXj3040608>