forked from p15670423/monkey
Report duplicating issues bugfix
This commit is contained in:
parent
12e85ea2b7
commit
8da4c024a5
|
@ -373,8 +373,13 @@ class ReportService:
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_exploits():
|
def get_exploits():
|
||||||
|
query = [{'$match': {'telem_category': 'exploit', 'data.result': True}},
|
||||||
|
{'$group': {'_id': {'ip_address': '$data.machine.ip_addr'},
|
||||||
|
'data': {'$first': '$$ROOT'},
|
||||||
|
}},
|
||||||
|
{"$replaceRoot": {"newRoot": "$data"}}]
|
||||||
exploits = []
|
exploits = []
|
||||||
for exploit in mongo.db.telemetry.find({'telem_category': 'exploit', 'data.result': True}):
|
for exploit in mongo.db.telemetry.aggregate(query):
|
||||||
new_exploit = ReportService.process_exploit(exploit)
|
new_exploit = ReportService.process_exploit(exploit)
|
||||||
if new_exploit not in exploits:
|
if new_exploit not in exploits:
|
||||||
exploits.append(new_exploit)
|
exploits.append(new_exploit)
|
||||||
|
|
Loading…
Reference in New Issue