Realize the previous idea was stupid and aggregate all exploit attempts based on status alone
This commit is contained in:
parent
e7953defdc
commit
f7d66e0ebc
|
@ -34,14 +34,6 @@ 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(
|
|
||||||
test=TEST_MACHINE_EXPLOITED,
|
|
||||||
status=status,
|
|
||||||
events=events
|
|
||||||
)
|
|
||||||
else:
|
|
||||||
AggregateFinding.create_or_add_to_existing(
|
AggregateFinding.create_or_add_to_existing(
|
||||||
test=TEST_MACHINE_EXPLOITED,
|
test=TEST_MACHINE_EXPLOITED,
|
||||||
status=status,
|
status=status,
|
||||||
|
|
Loading…
Reference in New Issue