network: disconnect from server on malformed header subs

closes #4478
This commit is contained in:
SomberNight 2018-07-03 17:17:20 +02:00
parent 8b1051fa24
commit 75a85a8161
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -1065,7 +1065,12 @@ class Network(util.DaemonThread):
self.on_stop()
def on_notify_header(self, interface, header_dict):
header_hex, height = header_dict['hex'], header_dict['height']
try:
header_hex, height = header_dict['hex'], header_dict['height']
except KeyError:
# no point in keeping this connection without headers sub
self.connection_down(interface.server)
return
header = blockchain.deserialize_header(util.bfh(header_hex), height)
if height < self.max_checkpoint():
self.connection_down(interface.server)