1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #Itera a la vez el sip y el dip y guarda en un hash los puertos
-
- from silk import *
-
-
- startDate = "2018/08/14"
- endDate = "2018/08/15"
- #Para filtrar por puertos. Pero no queremos todavia
- #minPort = 20
- #maxPort = 5000
-
-
- def ipConversion(number, position):
- mystr = ''
- ipadd = number.split(".") #Devuelve un arreglo
- for i in range(position+1):
- if i ==position:
- mystr = mystr + ipadd[i]
- else:
- mystr = mystr + ipadd[i] + '.'
- return mystr #devuelve los numeros en notacion string
-
-
- def UltimoAnalisis(flowHash, num):
- dportHash={}
- flow_Counter=0
- for filename in FGlob(classname="all", type="all", start_date=startDate, end_date=endDate, site_config_file="/etc/silk/conf-v9/silk.conf", data_rootdir="/home/scratch/flow/rwflowpack/"):
- for rec in silkfile_open(filename, READ):#reading the flow file
- if (':' in str(rec.sip)) or (num != 0 and ipConversion(str(rec.sip), num-1) not in flowHash): #Si en el paso anterior se vio que no
- #tiene el length de puertos requerido, se ignora
- continue
- else: #agrega a un hash cada puerto con un counter de sus destination ips
- dip = ipConversion(str(rec.dip), num)
- sip = ipConversion(str(rec.sip), num)
- dport= rec.dport
- if sip in dportHash:
- if dip in dportHash[sip]:
- if dport in dportHash[sip][dip]:
- dportHash[sip][dip][dport] += 1
- else:
- dportHash[sip][dip][dport] = 1
- else:
- dportHash[sip][dip] = {dport : 1}
- else:
- dportHash[sip] = { dip: {dport: 1} }
-
- #print flow_Counter
- return dportHash
-
-
- #main
-
- myNum = 0
- otherHash = {}
- while myNum <4: #Se itera las cuatro veces de acuerdo con la notacion de ipv4
- flowHash= UltimoAnalisis(otherHash, myNum)
- otherHash = {} #Se borra el hash para agregar elementos nuevos con la nueva etapa de la busqueda
- for sips in flowHash: #se itera por todos los dip y sus counters o puertos
- for dips, dports in flowHash[sips].items():
- if len(dports) >= 100: #si la cantidad de puertos es mayor o igual a 100, nos interesan
- #y por lo tanto se guardan en un hash
- if sips in otherHash:
- otherHash[sips][dips] = dports
- else:
- otherHash[sips] = {dips: dports}
- print sips, len(dports)
- myNum += 1
-
-
- counter = 0
- for dips, dports in otherHash.items():
- counter +=1 #para contar los elementos del hash
-
- print counter
|