forked from p15670423/monkey
Fix VictimHost's getData
This commit is contained in:
parent
dba82fc818
commit
b2eef28291
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue