Browse Source

krackattacks: fix DHCP offer to broadcast IP address

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

+ 10 - 0
krackattack/krack-test-client.py

@@ -171,6 +171,16 @@ class DHCP_sock(DHCP_am):
 		self.sock = kwargs.pop("sock")
 		super(DHCP_am, self).__init__(**kwargs)
 
+	def make_reply(self, req):
+		rep = super(DHCP_sock, self).make_reply(req)
+
+		# Fix scapy bug: set broadcast IP if required
+		if rep is not None and BOOTP in req and IP in rep:
+			if req[BOOTP].flags & 0x8000 != 0 and req[BOOTP].giaddr == '0.0.0.0' and req[BOOTP].ciaddr == '0.0.0.0':
+				rep[IP].dst = "255.255.255.255"
+
+		return rep
+
 	def send_reply(self, reply):
 		self.sock.send(reply, **self.optsend)