Skip to content
Snippets Groups Projects
Commit 6f3d5cfb authored by Zitnik, Anze's avatar Zitnik, Anze
Browse files

Fix some typos in code

parent 8904133d
No related branches found
No related tags found
No related merge requests found
......@@ -182,21 +182,21 @@ def generate_evidence(wc, es, agent):
evidence, result_rootcheck = check_rootcheck(wc, agent)
raw_evidence.append(evidence)
evidence, result_aler_integration = check_alert_integrations(wc)
evidence, result_alert_integration = check_alert_integrations(wc)
raw_evidence.append(evidence)
evidence, result_virus_total = check_virus_total_integration(wc)
raw_evidence.append(evidence)
evidence, result_lamd_process = check_clamd_process(wc, agent)
evidence, result_clamd_process = check_clamd_process(wc, agent)
raw_evidence.append(evidence)
evidence, result_clamd_logs = check_clamd_logs_elastic(es, agent)
raw_evidence.append(evidence)
# TODO:
if result_syscheck and result_rootcheck and result_aler_integration and \
(result_virus_total or (result_lamd_process and result_clamd_logs)):
if result_syscheck and result_rootcheck and result_alert_integration and \
(result_virus_total or (result_clamd_process and result_clamd_logs)):
malware_protection = { "malwareProtection": { "enabled": True }}
else:
malware_protection = { "malwareProtection": { "enabled": False }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment