/usr/sbin/auth2db is in auth2db 0.2.5-2+dfsg-4.
This file is owned by root:root, with mode 0o755.
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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | #!/usr/bin/python
# 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
# Copyright (c) 2007,2008 Ezequiel Vera
#------------------------------------------------------------------------------
# Nombre: auth2db.py
# Autor: Ezequiel Vera (ezequielvera@yahoo.com.ar)
# Ult. Modificacion: 30/07/2008
# Description: Parsea el archivo auth.log en busca de logins (smb,ssh,su,login,gdm)
# y lo pasa a una base de datos mysql que permite listar y ordenar
# los resultados.
#------------------------------------------------------------------------------
__author__ = "Ezequiel Vera"
__version__ = "0.2.5"
__date__ = "2008-07-30"
__copyright__ = "Copyright (c) 2007,2008 Ezequiel Vera"
__license__ = "GPL"
import MySQLdb
import os
import sys
import string
import time
import datetime
import traceback
import socket
import re
import smtplib
import codecs
from configobj import ConfigObj
#CONFIG_AUTH_PATH = "/var/log/"
CONFIG_PATH = "/etc/auth2db/"
#CONFIG_PATH_FLAG = CONFIG_PATH+"flag.d/"
CONFIG_PATH_FLAG = "/var/lib/auth2db/flag.d/"
#CONFIG_PATH_TMP = "/tmp/"
CONFIG_PATH_TMP = "/var/lib/auth2db/tmp/"
config = ConfigObj(CONFIG_PATH+'auth2db.conf')
config_filters = ConfigObj(CONFIG_PATH+"filters.conf")
default_cfg = ConfigObj('/etc/default/auth2db')
# Carga en las variables el archivo config.dat
CONFIG_HOST = config['dbserver']
CONFIG_DB = config['dbname']
CONFIG_USER = config['dbuser']
CONFIG_PASS = config['dbpass']
UPDATE_IP_SSHD = default_cfg['UPDATE_IP_SSHD']
today = datetime.date.today()
# VALIDAR CONECCION MySQLdb
try:
conn = MySQLdb.connect (host = CONFIG_HOST,
user = CONFIG_USER,
passwd = CONFIG_PASS,
db = CONFIG_DB)
except MySQLdb.Error, e:
print "Error %d: %s" % (e.args[0], e.args[1])
sys.exit (1)
def mesreplace(s):
mes_string = ('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec')
mes_number = ('01','02','03','04','05','06','07','08','09','10','11','12')
for a, b in zip(mes_string, mes_number):
s = s.replace(a, b)
return s
def regexAction(tipo,archivolog,rawstr,section,action):
os.system("grep -Ei '("+action+")' "+archivolog+" > "+CONFIG_PATH_TMP+"auth2db_"+section+'.log')
os.system("sed -e 's/[`]//g' -i "+CONFIG_PATH_TMP+"auth2db_"+section+'.log')
os.system('''sed -e "s/[']//g" -i '''+CONFIG_PATH_TMP+"auth2db_"+section+'.log')
''' "'" '''
obj_flag.section = section
obj_flag.flaginiciar()
desde = obj_flag.flagcheck()
if desde == '':
desde = 0
else:
desde = desde + 1
server = socket.gethostname()
# connect
db = MySQLdb.connect(host=CONFIG_HOST, user=CONFIG_USER, passwd=CONFIG_PASS, db=CONFIG_DB)
# create a cursor
inserta = db.cursor()
compile_obj = re.compile(rawstr, re.IGNORECASE| re.MULTILINE)
# carga el archivo para revisar con regex
f = codecs.open( CONFIG_PATH_TMP+"auth2db_"+section+'.log', "r", "iso-8859-1" )
datos = f.read()
lista = string.split(datos, '\n')
contador = 0
for i in range(desde,len(lista)):
result = re.search(rawstr, lista[i], re.IGNORECASE| re.MULTILINE)
if result:
flag = i
month = mesreplace(result.group('month'))
day = result.group('day')
if len(day) == 1:
day = "0"+day
hour = result.group('hour')
fecha = time.strftime('%Y') +'-'+ month +'-'+ day +' '+ hour
if result.group('host') != "":
server = result.group('host')
#server = socket.gethostname()
#tipo = result.group('type')
pid = result.group('pid')
if pid == "":
pid = "0"
usuario = result.group('usuario')
usuario = string.replace(usuario,'illegal','')
usuario = string.replace(usuario,'invalid','')
usuario = string.replace(usuario,'user','')
usuario = string.replace(usuario,'from','')
usuario = string.replace(usuario,'=','')
usuario = string.strip(usuario)
action = result.group('action')
ip = result.group('ip')
#if tipo == "sshd" or tipo == "proftpd" or tipo == "apache":
# ip = result.group('ip')
#elif tipo == "gdm" or tipo == "su" or tipo == "login":
# ip = "127.0.0.1"
detalle = lista[i]
# execute SQL
try:
if ip != "":
sql = "INSERT INTO login (fecha,server,tipo,pid,action,usuario,ip,detalle) VALUES('"+fecha+"','"+server+"','"+tipo+"','"+pid+"','"+action+"','"+usuario+"','"+ip+"','"+detalle+"')"
else:
sql = "INSERT INTO login (fecha,server,tipo,pid,action,usuario,detalle) VALUES('"+fecha+"','"+server+"','"+tipo+"','"+pid+"','"+action+"','"+usuario+"','"+detalle+"')"
inserta.execute(sql)
#print sql
contador = contador + 1
obj_flag.flaginsertar(flag)
except NameError, x:
#llama al objeto Send_Error()
obj_send_email.excepcion(lista[i],x,str(tipo))
# SHOW SCREEN DETAIL
print "["+section+"]"
print "path: "+archivolog
print "inserts: "+str(contador)
print "-------------------------------"
print ""
def regexFilters():
rawstr = r"""(?P<section>(?<=^\[)\w+)"""
compile_obj = re.compile(rawstr, re.IGNORECASE| re.MULTILINE)
file = open(CONFIG_PATH+"filters.conf")
datos = file.read()
for result in compile_obj.finditer(datos):
section = config_filters[result.group('section')]
CONFIG_ENABLED = section['enabled']
CONFIG_TYPE = section['type']
CONFIG_LOG = section['log']
CONFIG_ACTION = section['action']
CONFIG_REGEX = section['regex']
# Execute regex parser
if CONFIG_ENABLED == "true":
existe = os.path.exists(CONFIG_LOG)
if existe:
regexAction(CONFIG_TYPE,CONFIG_LOG,CONFIG_REGEX,result.group('section'),CONFIG_ACTION)
# UPDATE IP SSHD session
if result.group('section') == "sshd_session" and string.lower(UPDATE_IP_SSHD) == "Yes":
updateipsshd()
# UPDATE IP SMBD session (DISABLED)
##if result.group('section') == "smbd_session":
## updateipsmbd()
else:
print "["+str(result.group('section'))+"]"
print "Log File "+CONFIG_LOG+" not exist."
print "-------------------------------"
print ""
#print section
def send_email(subject,email,msg_body):
import smtplib
from email.MIMEText import MIMEText
# connect
db = MySQLdb.connect(host=CONFIG_HOST, user=CONFIG_USER, passwd=CONFIG_PASS, db=CONFIG_DB)
# create a cursor
cursor = db.cursor(MySQLdb.cursors.DictCursor)
# execute SQL
sql = "SELECT * from smtp_config "
cursor.execute(sql)
result = cursor.fetchall()
for record in result:
smtp_server = record["smtp_server"]
port_server = record["smtp_port"]
mail_from = record["mail_from"]
auth_active = record["auth_active"]
auth_user = record["auth_user"]
auth_pass = record["auth_pass"]
msg = MIMEText(msg_body)
msg['Subject'] = str(subject)
msg['From'] = mail_from
msg['Reply-to'] = mail_from
msg['To'] = str(email)
s = smtplib.SMTP()
s.connect(smtp_server)
# if required authenticate
if auth_active == 1:
s.login(auth_user,auth_pass)
if email == "":
email = mail_from
# Send the email - real from, real to, extra headers and content ...
s.sendmail(mail_from, str(email), msg.as_string())
s.close()
class Send_Error:
"agrega registros en el archivo log de errores y controla que no se repitan. "
def __init__(self):
self.send_error = ""
def excepcion(self,lista,x,tipo_error):
error_flag = 0
f_error = open( CONFIG_PATH + "error.d/error."+str(today)+".log" )
datos_error = f_error.read()
lista_error = string.split(datos_error, '\n')
for i_error in range(0,len(lista_error)):
if lista.replace('\n','') == lista_error[i_error]:
error_flag = 1
if error_flag == 0:
print '[error]: ', x
os.system("echo '["+tipo_error+" error]: " + str(x) + "' >> "+CONFIG_PATH+"error.d/error."+str(today)+".log")
os.system("echo '" + lista + "' >> "+CONFIG_PATH+"error.d/error."+str(today)+".log")
self.send_error = 1
def send(self):
if self.send_error == 1:
#os.system("mail "+CONFIG_EMAIL_TO+" -s '[auth2db error]' < "+CONFIG_PATH+"error.d/error."+str(today)+".log")
msg = "Please send the /etc/auth2db/error.d/error."+str(today)+".log to the Developers.\n"
msg = msg + "To check and FIX Auth2DB.\n"
msg = msg + "Thanks. \n\n"
email = ""
send_email("[auth2db error] ", email, msg)
print "Please send the /etc/auth2db/error.d/error."+str(today)+".log to the Developers."
print "To check and FIX Auth2DB."
print "Thanks. \n\n"
class Flag:
"Controla las banderas del ultimo insert"
def __init__(self):
self.existe = ""
self.f = ""
self.flag = ""
self.datos = ""
self.lista = ""
self.str = ""
self.line_flag = ""
self.i = ""
self.str = ""
self.tipo = ""
self.section = ""
def flaginiciar(self):
self.existe = os.path.exists(CONFIG_PATH_FLAG+"flag."+self.section+self.str+".dat")
if self.existe:
self.f = open(CONFIG_PATH_FLAG+"flag."+self.section+self.str+".dat",'r')
self.flag = self.f.readline()
if self.flag == "":
os.system("echo 'ok' > "+CONFIG_PATH_FLAG+"flag."+self.section+self.str+".dat")
else:
os.system("echo 'ok' > "+CONFIG_PATH_FLAG+"flag."+self.section+self.str+".dat")
def flaginsertar(self, linea):
self.f = open( CONFIG_PATH_TMP+"auth2db_"+self.section+self.str+'.log' )
self.datos = self.f.read()
self.lista = string.split(self.datos, '\n')
self.bandera = "echo '" + self.lista[linea] + "' > "+CONFIG_PATH_FLAG+"flag."+self.section+self.str+".dat"
os.system(self.bandera)
def flagcheck(self):
self.f = open(CONFIG_PATH_FLAG+"flag."+self.section+self.str+".dat",'r')
self.line_flag = self.f.readline()
self.f = open( CONFIG_PATH_TMP+"auth2db_"+self.section+self.str+'.log' )
self.datos = self.f.read()
self.lista = string.split(self.datos, '\n')
self.flag = ''
for self.i in range(0,len(self.lista)):
#os.system("echo '"+line_flag+str(len(line_flag))+" - "+lista[i]+str(len(lista[i]))+"' >> test.txt")
if self.line_flag.replace('\n','') == self.lista[self.i]:
self.flag = self.i
return self.flag
def updateipsmbd():
# connect
db = MySQLdb.connect(host=CONFIG_HOST, user=CONFIG_USER, passwd=CONFIG_PASS, db=CONFIG_DB)
# create a cursor
cursor = db.cursor()
# execute SQL
#sql = "SELECT distinct pid,usuario from login WHERE (ip is NULL OR ip = '' OR ip = '-') AND tipo = 'smbd'";
sql = "SELECT distinct pid,usuario from login WHERE ip is NULL AND tipo = 'smbd'";
cursor.execute(sql)
result = cursor.fetchall()
for record in result:
pid = str(record[0])
usuario = record[1]
os.system("grep -r "+pid+" /var/log/samba/* > "+CONFIG_PATH_TMP+"tmpfile")
f = open(CONFIG_PATH_TMP+"tmpfile")
tmp = f.readline()
if tmp != "":
pos = tmp.index(":")
linea = tmp[pos+3:len(tmp)]
linea_array = string.split(linea, ' ')
machine = linea_array[0]
ip = linea_array[1].replace("(","")
ip = ip.replace(")","")
actualiza = db.cursor()
sql = "UPDATE login SET ip='"+ip+"', machine='"+machine+"' WHERE pid='"+pid+"' AND usuario='"+usuario+"' AND ip is NULL"
actualiza.execute(sql)
else:
actualiza = db.cursor()
sql = "UPDATE login SET ip='0.0.0.0' WHERE pid='"+pid+"' AND usuario='"+usuario+"' AND ip is NULL"
actualiza.execute(sql)
def updateipsshd():
# connect
db = MySQLdb.connect(host=CONFIG_HOST, user=CONFIG_USER, passwd=CONFIG_PASS, db=CONFIG_DB)
# create a cursor
cursor = db.cursor()
# execute SQL
sql = "UPDATE login AS t1 LEFT JOIN login AS t2 ON t2.action = 'Accepted' AND t2.tipo = 'sshd' AND t2.fecha = t1.fecha SET t1.ip = t2.ip WHERE t1.action = 'opened' AND t1.tipo = 'sshd' AND t1.ip is NULL"
cursor.execute(sql)
sql = "UPDATE login SET ip = '0.0.0.0' WHERE action = 'opened' AND tipo = 'sshd' AND ip is NULL"
cursor.execute(sql)
# Objeto "Flag()" Global
obj_flag = Flag()
obj_flag_pass = Flag()
# Objeto "Send()" Global
obj_send_email = Send_Error()
def main():
# Evalua si se paso el argumento -v
if len(sys.argv) > 1 and sys.argv[1] == "-v":
print "\nAuth2DB"
print "version: " + __version__
print "author: " + __author__
print "email: ezequielvera@yahoo.com.ar"
print "website: http://www.auth2db.com.ar"
print "copyright: " + __copyright__
print ""
else:
# Execute regexFilters()
regexFilters()
obj_send_email.send()
#Esta linea lanza la funcion principal si aun no esta lanzada
if __name__ =='__main__':
try:
main()
except:
# print error message re exception
traceback.print_exc()
|