-
Notifications
You must be signed in to change notification settings - Fork 0
/
__mainSSII__.py
330 lines (285 loc) · 12 KB
/
__mainSSII__.py
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
#coding: utf-8
'''
Created on 22 feb 2022
@author: Servando, Siamion, Jorge
'''
#ficheros binarios, de imágenes y directorios
#de los sistemas informáticos críticos y las aplicaciones de la organización y dar cuenta
#mensualmente
import hashlib
import os
import datetime
import logging
import tkinter as tk
import threading
from threading import Thread
from tkinter.scrolledtext import ScrolledText
from pathlib import Path
from pick import pick
import webbrowser
logo = """
█████ █████ █████ ██████████ █████████
░░███ ░░███ ░░███ ░░███░░░░███ ███░░░░░███
░███ ░███ ░███ ░███ ░░███░███ ░░░
░███████████ ░███ ░███ ░███░░█████████
░███░░░░░███ ░███ ░███ ░███ ░░░░░░░░███
░███ ░███ ░███ ░███ ███ ███ ░███
█████ █████ █████ ██████████ ░░█████████
░░░░░ ░░░░░ ░░░░░ ░░░░░░░░░░ ░░░░░░░░░
in Python
"""
# GLOBALS
configDict = dict()
filesAndHashes = dict()
newFilesAndHashes = dict()
badIntegrity = list()
graphDate = list()
cantidadDeArchivos = [0, 1000]
now = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
interval = 0
running = bool()
window = tk.Tk()
logBox = ScrolledText(window, width=80, height=20)
contadorDeDias = 0
contadorDeMes = 0
numberFilesOkMensual = 0
numberFilesModifiedMensual = 0
def generarFicheros():
generarFicherosBin()
generarFicherosTxt()
def generarFicherosBin():
global configDict
path = Path(configDict["Directories to protect"])
try:
Path(configDict["Directories to protect"]+"\FicherosBIN").mkdir(parents=True)
except:
pass
count = 0
for i in range(1, 101):
nameFile = "EjemploBin " + str(i) +".bin"
path = Path((configDict["Directories to protect"]+"\FicherosBIN") + os.path.sep + nameFile)
try:
with open(path, "w") as file:
file.write("Esto es un ejemplo de fichero bin (" + str(i) + ").")
except:
logging.info("Se ha producido un error a la hora de crear ficheros. :(")
count += 1
logging.info("Creados " + str(count) + " ficheros BIN correctamente.")
def generarFicherosTxt():
global configDict
path = Path(configDict["Directories to protect"])
try:
Path(configDict["Directories to protect"]+"\FicherosTXT").mkdir(parents=True)
except:
pass
count = 0
for i in range(1, 101):
nameFile = "EjemploTxt " + str(i) +".txt"
path = Path((configDict["Directories to protect"]+"\FicherosTXT") + os.path.sep + nameFile)
try:
with open(path, "w") as file:
file.write("Esto es un ejemplo de fichero txt (" + str(i) + ").")
except:
logging.info("Se ha producido un error a la hora de crear ficheros. :(")
count += 1
logging.info("Creados " + str(count) + " ficheros TXT correctamente.")
def importarConfiguracion():
path = "config.config"
if (os.path.exists(path)):
try:
with open(path, "r") as config:
for line in config:
if "#" not in line:
confSplitted = line.split("=")
configDict[confSplitted[0].strip(
)] = confSplitted[1].strip()
logging.info("La configuración ha sido importada con éxito")
except:
logging.error("Se ha producido un error al importar la configuración")
else:
configs = ["\nSelected Hash mode=\n",
"Directories to protect=\n", "Verify interval=\n"]
try:
with open("config.config", "w") as file:
file.write(
"# Agregar el directorio a proteger\n# Intervalo de tiempo entre examenes en segundos\n# Guardar la configuracion antes de iniciar el examen \n# Los Hash que soportan son: sha3_256, sha3_384, sha3_512 o md5\n# Las rutas de los archivos deben empezar por 'C:\\' o 'C:\' con todas las barras invertidas ")
for config in configs:
file.write(config)
logging.info("El archivo de configuración ha sido generado con éxito")
except:
logging.error(
"Se ha producido un error al crear el archivo de configuración")
menu()
def configurarSistema():
path = "config.config"
if (os.path.exists(path)):
webbrowser.open_new("config.config")
else:
configs = ["\nSelected Hash mode=\n",
"Directories to protect=\n", "Verify interval=\n"]
try:
with open("config.config", "w") as file:
file.write(
"# Agregar el directorio a proteger\n# Intervalo de tiempo entre examenes en segundos\n# Guardar la configuracion antes de iniciar el examen \n# Los Hash que soportan son: sha3_256, sha3_384, sha3_512 o md5\n# Las rutas de los archivos deben empezar por 'C:\\' o 'C:\' con todas las barras invertidas ")
for config in configs:
file.write(config)
logging.info("El archivo de configuración ha sido generado con éxito")
webbrowser.open_new("config.config")
except:
logging.error(
"Se ha producido un error al crear el archivo de configuración")
def hashearCarpeta(pathName):
fileAndHash = dict()
for root, dirs, files in os.walk(pathName):
for file in files:
with open(os.path.join(root, file), "rb") as fileRaw:
if(configDict["Selected Hash mode"].lower() == "sha3_256"):
fileAndHash[os.path.join(root, file).replace("\\", "/")] = hashlib.sha3_256(
fileRaw.read()).hexdigest()
elif(configDict["Selected Hash mode"].lower() == "sha3_384"):
fileAndHash[os.path.join(root, file).replace("\\", "/")] = hashlib.sha3_384(
fileRaw.read()).hexdigest()
elif(configDict["Selected Hash mode"].lower() == "sha3_512"):
fileAndHash[os.path.join(root, file).replace("\\", "/")] = hashlib.sha3_512(
fileRaw.read()).hexdigest()
elif(configDict["Selected Hash mode"].lower() == "md5"):
fileAndHash[os.path.join(root, file).replace("\\", "/")] = hashlib.md5(
fileRaw.read()).hexdigest()
return fileAndHash
def exportarHashesADocumento(diccionarioDeHashes):
begin_time = datetime.datetime.now()
path = "hashes.hash"
try:
with open(path, "w") as writer:
for key, value in diccionarioDeHashes.items():
writer.write(key + "=" + value + "\n")
logging.info("Los hashes han sido guardados con éxito")
except:
logging.error("Se ha producido un error al exportar los hashes")
end = datetime.datetime.now() - begin_time
strr = "Hashes exportados correctamente en: " + str(end)
logging.info(strr)
def comparaHashes():
global contadorDeDias
contadorDeDias += 1
numberOfFilesOK = int()
numberOfFilesNoOk = int()
listOfNoMatches = list()
for key, value in filesAndHashes.items():
if newFilesAndHashes[key] == value:
numberOfFilesOK += 1
else:
numberOfFilesNoOk += 1
cadena = "DIR: " + str(key) + " Los hashes no coinciden!"
listOfNoMatches.append(cadena)
badIntegrity.append(numberOfFilesNoOk)
global numberFilesOkMensual
global numberFilesModifiedMensual
numberFilesOkMensual += numberOfFilesOK
numberFilesModifiedMensual += numberOfFilesNoOk
str1 = "Numero de archivos OK: " + str(numberOfFilesOK)
str2 = "Numero de archivos MODIFICADOS: " + str(numberOfFilesNoOk)
logging.info(str1)
logging.info(str2)
if(listOfNoMatches):
str3 = "Archivos con integridad comprometida: "
noMatchesToPrint = list()
for entry in listOfNoMatches:
noMatchesToPrint.append(" "+entry)
logging.warning(str3 + "\n" + '\n'.join(noMatchesToPrint))
if(contadorDeDias==31):
global contadorDeMes
contadorDeMes += 1
porcentaje = (numberFilesModifiedMensual/(numberFilesModifiedMensual+numberFilesOkMensual))*100
path = "reporteMensual"+str(contadorDeMes)+".txt"
with open(path, "w") as reporte:
reporte.write("\nNumero de ficheros sin modificar en el mes: " +str(numberFilesOkMensual))
reporte.write("\nNumero de ficheros modificados en el mes: " +str(numberFilesModifiedMensual))
reporte.write("\nPorcentaje de integridad comprometida en el mes: " +str(porcentaje) + "%")
logging.info("Se ha generado un reporte mensual nuevo!")
def interfazTkinterHandle():
t = Thread(target=interfazTkinter)
t.start()
def runHandle():
t = Thread(target=run)
global running
running = True
t.start()
interfazTkinter()
def run():
if running:
begin_time = datetime.datetime.now()
pathName = configDict["Directories to protect"]
global newFilesAndHashes
newFilesAndHashes = hashearCarpeta(pathName)
comparaHashes()
logBox.config(state=tk.NORMAL)
logBoxContainer() # AQUI EL LOG BOX
logBox.config(state=tk.DISABLED)
interval = configDict["Verify interval"]
threading.Timer(float(interval), run).start()
end = datetime.datetime.now() - begin_time
strr = "Comprobación realizada con éxito en: " + str(end)
logging.info(strr)
else:
logging.critical("EXAMEN INTERRUMPIDO")
def importarConfigYHashes():
filename = "log.log"
logging.basicConfig(format='%(levelname)s:%(asctime)s: %(message)s',
datefmt='%d/%m/%Y %H:%M:%S', filename=filename, level=logging.INFO)
importarConfiguracion()
crearHashes()
def crearHashes():
pathName = configDict["Directories to protect"]
global filesAndHashes
filesAndHashes = hashearCarpeta(pathName)
exportarHashesADocumento(filesAndHashes)
def detenerExamen():
global running
running = False
run()
def leeLog():
text = str()
if (os.path.exists('log.log')):
with open(os.path.join('log.log')) as reader:
text = reader.read()
else:
f = open(os.path.join('log.log'), "x")
return text
def logBoxContainer():
logBox.delete("1.0", tk.END)
text = leeLog()
logBox.insert(tk.INSERT, text)
logBox.insert(tk.END, "")
def interfazTkinter():
window.resizable(0, 0)
window.geometry("512x512")
labelLog = tk.Label(window, text="Fichero de LOG")
labelLog.pack()
window.title("HIDS")
logBox.pack()
window.mainloop()
def menu():
title = logo
options = ['Configurar sistema HIDS', 'Importar configuracion', 'Empezar Examen',
'Detener Examen', 'Ver Logs', 'Cerrar']
option, index = pick(options, title, indicator='=>', default_index=0)
if option == 'Configurar sistema HIDS':
configurarSistema()
elif option == 'Importar configuracion':
importarConfigYHashes()
generarFicheros()
elif option == 'Empezar Examen':
importarConfigYHashes()
runHandle()
elif option == 'Detener Examen':
detenerExamen()
elif option == 'Ver Logs':
path = "log.log"
if (os.path.exists(path)):
webbrowser.open_new("log.log")
elif option == 'Cerrar':
os.system(quit())
menu()
if __name__ == "__main__":
menu()