forked from p34709852/monkey
Aggregate passed exploit attempts tests (which means failed exploiting)
This commit is contained in:
parent
1fddd4abbf
commit
3f2d5b1479
|
@ -34,11 +34,19 @@ def test_machine_exploited(telemetry_json):
|
||||||
)
|
)
|
||||||
status = STATUS_FAILED
|
status = STATUS_FAILED
|
||||||
|
|
||||||
|
# aggregate only passed tests (which means exploit failed). Each successful exploit gets its own finding.
|
||||||
|
if status == STATUS_FAILED:
|
||||||
Finding.save_finding(
|
Finding.save_finding(
|
||||||
test=TEST_MACHINE_EXPLOITED,
|
test=TEST_MACHINE_EXPLOITED,
|
||||||
status=status,
|
status=status,
|
||||||
events=events
|
events=events
|
||||||
)
|
)
|
||||||
|
else:
|
||||||
|
AggregateFinding.create_or_add_to_existing(
|
||||||
|
test=TEST_MACHINE_EXPLOITED,
|
||||||
|
status=status,
|
||||||
|
events=events
|
||||||
|
)
|
||||||
|
|
||||||
AggregateFinding.create_or_add_to_existing(
|
AggregateFinding.create_or_add_to_existing(
|
||||||
test=TEST_MALICIOUS_ACTIVITY_TIMELINE,
|
test=TEST_MALICIOUS_ACTIVITY_TIMELINE,
|
||||||
|
|
Loading…
Reference in New Issue