from routersploit.modules.exploits.routers.thomson.twg850_password_disclosure import Exploit
def test_exploit_success(target):
""" Test scenario - successful exploitation """
route_mock = target.get_route_mock("/GatewaySettings.bin", methods=["GET"])
route_mock.return_value = (
"TEST"
"0MLog"
"TEST"
)
exploit = Exploit()
assert exploit.target == ""
assert exploit.port == 80
exploit.target = target.host
exploit.port = target.port
assert exploit.check()
assert exploit.run() is None