Fix VictimHost's getData

This commit is contained in:
itay 2019-06-11 16:13:26 +03:00
parent dba82fc818
commit b2eef28291
1 changed files with 3 additions and 1 deletions

View File

@ -16,6 +16,8 @@ class VictimHostTelem(AttackTelem):
self.machine = {'domain_name': machine.domain_name, 'ip_addr': machine.ip_addr}
def get_data(self):
return super(VictimHostTelem, self).get_data().update({
data = super(VictimHostTelem, self).get_data()
data.update({
'machine': self.machine
})
return data