mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-08-14 02:37:06 -07:00
fixes #188
This commit is contained in:
parent
22a43df4f8
commit
d1df76c601
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ class DHCPpoisoner():
|
|||
return 'stored', client_ip
|
||||
|
||||
net = IPNetwork(self.ip_address + '/24')
|
||||
return 'generated', random.choice(list(net))
|
||||
return 'generated', str(random.choice(list(net)))
|
||||
|
||||
def dhcp_callback(self, resp):
|
||||
if resp.haslayer(DHCP):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue