/usr/share/doc/auth2db/README is in auth2db 0.2.5-2+dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | _ _ ___ _ _
__ _ _ _ | |_ | |_ |_ ) __| || |__
/ _` || || || _|| ' \ / / / _` || '_ \
\__,_| \_,_| \__||_||_|/___|\__,_||_.__/
-------------------------------------------------------------
Auth2DB (version 0.2.5) 30/07/2008
-------------------------------------------------------------
Auth2db uses MySQL database to store logs, whichs allows to performe
a separated multi-client to single DB storage, turning the tedious
work of constants auditing into a trivial and enjoyable experience.
Auth2db examining logs files and inserts the details into a MySQL database.
It allows you to display and administrate the content in a Web front-end.
Generate Reports, Statatistics, Alerts, and Analyze Logs in Real Time.
More details:
-------------
Test Distributions at the moment: Debian, Ubuntu, Slackware, Backtrack2, Fedora
Debian/Ubuntu: /var/log/auth.log
Slackware/Backtrack2: /var/log/messages | /var/log/secure
Fedora: /var/log/secure
Suse: /var/log/messages
Installation 0.2.5 tar.gz:
-------------------------
# install mysql-server-5.0
# install python-mysqldb
# install PHP GD (optional for graphics report)
# install auth2db
tar zxvf auth2db.0.2."version".tar.gz
cd auth2db
python setup.py install
# Create database "authlog"
mysql> create database authlog;
# To create tables, config server and hosts exec as ROOT:
auth2db-config
# EDIT /var/www/auth2db/conn.php (host/user/pass)
# EDIT /etc/auth2db/filters.conf to enable|disabled types or create other.
# Verify /etc/auth2db/auth2db.conf to enable|disabled alerts
# (if you have many hosts, only 1 host alert activation is required to execute all).
# EDIT /etc/ssh/sshd_config
ChallengeResponseAuthentication no
PasswordAuthentication yes
# Use Daemon
# /etc/init.d/auth2db-daemon start|stop
# READY...
# execute auth2db or start daemon
http://localhost/auth2db
(user:admin | pass:admin)
;)
Experimental UPDATE_IP_SSHD:
---------------------------
Actualiza las IPs de los registros "session opened", que se generan
luego de ingresar por SSH, seguido del registro "Accepted".
Esta feature es experimental. Si nota que la performance cae,
desactive esta opcion en el archivo "/etc/auth2db/auth2db.conf".
Es necesario tener activo el filtro [sshd_session] para su funcionamiento.
# enabled
UPDATE_IP_SSHD = y
# Disabled
UPDATE_IP_SSHD = n
Configuration files:
--------------------
# PATH donde esta la configuracion principal
CONFIG_PATH = "/etc/auth2db/"
# PATH donde se guardan las BANDERAS del ultimo insert
CONFIG_PATH_FLAG = "/etc/auth2db/flag.d/"
# PATH donde se generan los .log temporales
CONFIG_PATH_TMP = "/tmp/"
# PATH de modulos adicionales como configobj.py
"/usr/share/auth2db/modules"
Contact:
--------
You need some new features, you found bugs or you just
appreciate this program, you can contact me at :
Website: http://www.auth2db.com.ar
Ezequiel Vera: <ezequielvera@yahoo.com.ar>
License:
--------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|