Browse Source

krackattacks: improve DHCP debug output

Mathy Vanhoef 7 years ago
parent
commit
d2bf16937a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      krackattack/krack-test-client.py

+ 1 - 1
krackattack/krack-test-client.py

@@ -190,7 +190,7 @@ class DHCP_sock(DHCP_am):
 		self.sock.send(reply, **self.optsend)
 
 	def print_reply(self, req, reply):
-		log(STATUS, "%s: DHCP reply %s to %s" % (reply.getlayer(Ether).dst, reply.getlayer(IP).dst, reply.dst), color="green")
+		log(STATUS, "%s: DHCP reply %s to %s" % (reply.getlayer(Ether).dst, reply.getlayer(BOOTP).yiaddr, reply.dst), color="green")
 
 	def remove_client(self, clientmac):
 		clientip = self.leases[clientmac]