- Fix potential buffer overflow in print clone flags of auparse
- Fix python traceback parsing watches without perm statement (Miloslav Trmac) - Update auditctl to handle legacy kernels when putting a watch on a dir - Fix acct interpretation in auparse
This commit is contained in:
parent
be93e36052
commit
2837477064
@ -76,3 +76,4 @@ audit-1.5.1.tar.gz
|
|||||||
audit-1.5.2.tar.gz
|
audit-1.5.2.tar.gz
|
||||||
audit-1.5.3.tar.gz
|
audit-1.5.3.tar.gz
|
||||||
audit-1.5.5.tar.gz
|
audit-1.5.5.tar.gz
|
||||||
|
audit-1.5.6.tar.gz
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
--- audit/src/auditd.c.reconfig 2007-07-01 04:12:43.000000000 +0200
|
|
||||||
+++ audit/src/auditd.c 2007-07-01 04:25:41.000000000 +0200
|
|
||||||
@@ -522,10 +522,8 @@ int main(int argc, char *argv[])
|
|
||||||
AUDIT_DAEMON_CONFIG,
|
|
||||||
"auditd error getting hup info - no change,"
|
|
||||||
" sending auid=? pid=? subj=? res=failed");
|
|
||||||
- } else {
|
|
||||||
- free(rep);
|
|
||||||
- rep = NULL;
|
|
||||||
}
|
|
||||||
+ rep = NULL;
|
|
||||||
hup_info_requested = 0;
|
|
||||||
} else if(usr1_info_requested){
|
|
||||||
char usr1[MAX_AUDIT_MESSAGE_LENGTH];
|
|
@ -1,22 +0,0 @@
|
|||||||
diff -urN audit/system-config-audit/ChangeLog audit-1.5.5/system-config-audit/ChangeLog
|
|
||||||
--- audit/system-config-audit/ChangeLog 2007-06-27 15:07:59.000000000 +0200
|
|
||||||
+++ audit-1.5.5/system-config-audit/ChangeLog 2007-07-17 01:20:02.000000000 +0200
|
|
||||||
@@ -1,3 +1,8 @@
|
|
||||||
+2007-07-17 Miloslav Trmač <mitr@redhat.com>
|
|
||||||
+
|
|
||||||
+ * system-config-audit.desktop.in (Categories): Add System, to move the
|
|
||||||
+ menu entry to the Administration submenu.
|
|
||||||
+
|
|
||||||
2007-06-27 Miloslav Trmač <mitr@redhat.com>
|
|
||||||
|
|
||||||
* configure.ac: Release 0.4.2.
|
|
||||||
diff -urN audit/system-config-audit/system-config-audit.desktop.in audit-1.5.5/system-config-audit/system-config-audit.desktop.in
|
|
||||||
--- audit/system-config-audit/system-config-audit.desktop.in 2007-05-15 00:41:31.000000000 +0200
|
|
||||||
+++ audit-1.5.5/system-config-audit/system-config-audit.desktop.in 2007-07-17 01:20:02.000000000 +0200
|
|
||||||
@@ -6,4 +6,4 @@
|
|
||||||
Terminal=false
|
|
||||||
Type=Application
|
|
||||||
Icon=logviewer
|
|
||||||
-Categories=Settings;
|
|
||||||
\ Chybí znak konce řádku na konci souboru
|
|
||||||
+Categories=Settings;System;
|
|
17
audit.spec
17
audit.spec
@ -2,20 +2,17 @@
|
|||||||
|
|
||||||
Summary: User space tools for 2.6 kernel auditing
|
Summary: User space tools for 2.6 kernel auditing
|
||||||
Name: audit
|
Name: audit
|
||||||
Version: 1.5.5
|
Version: 1.5.6
|
||||||
Release: 5%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
URL: http://people.redhat.com/sgrubb/audit/
|
URL: http://people.redhat.com/sgrubb/audit/
|
||||||
Source0: %{name}-%{version}.tar.gz
|
Source0: %{name}-%{version}.tar.gz
|
||||||
Patch0: audit-1.5.5-reconfig.patch
|
|
||||||
Patch1: audit-1.5.5-sca-categories.patch
|
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
BuildRequires: libtool swig python-devel
|
BuildRequires: gettext-devel intltool libtool swig python-devel
|
||||||
BuildRequires: kernel-headers >= 2.6.18
|
BuildRequires: kernel-headers >= 2.6.18
|
||||||
BuildRequires: automake >= 1.9
|
BuildRequires: automake >= 1.9
|
||||||
BuildRequires: autoconf >= 2.59
|
BuildRequires: autoconf >= 2.59
|
||||||
BuildRequires: gettext-devel intltool
|
|
||||||
Requires: %{name}-libs = %{version}-%{release}
|
Requires: %{name}-libs = %{version}-%{release}
|
||||||
Requires: %{name}-libs-python = %{version}-%{release}
|
Requires: %{name}-libs-python = %{version}-%{release}
|
||||||
Requires: chkconfig
|
Requires: chkconfig
|
||||||
@ -77,8 +74,6 @@ An utility for editing audit configuration.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1 -b .reconfig
|
|
||||||
%patch1 -p1 -b .sca-categories
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
aclocal && autoconf && autoheader && automake
|
aclocal && autoconf && autoheader && automake
|
||||||
@ -217,6 +212,12 @@ fi
|
|||||||
%config(noreplace) %{_sysconfdir}/security/console.apps/system-config-audit-server
|
%config(noreplace) %{_sysconfdir}/security/console.apps/system-config-audit-server
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jul 25 2007 Steve Grubb <sgrubb@redhat.com> 1.5.6-1
|
||||||
|
- Fix potential buffer overflow in print clone flags of auparse
|
||||||
|
- Fix python traceback parsing watches without perm statement (Miloslav Trmac)
|
||||||
|
- Update auditctl to handle legacy kernels when putting a watch on a dir
|
||||||
|
- Fix acct interpretation in auparse
|
||||||
|
|
||||||
* Tue Jul 17 2007 Miloslav Trmač <mitr@redhat.com> - 1.5.5-5
|
* Tue Jul 17 2007 Miloslav Trmač <mitr@redhat.com> - 1.5.5-5
|
||||||
- Fix a double free when auditd receives SIGHUP
|
- Fix a double free when auditd receives SIGHUP
|
||||||
- Move the system-config-audit menu entry to the Administration menu
|
- Move the system-config-audit menu entry to the Administration menu
|
||||||
|
Loading…
Reference in New Issue
Block a user