test_firepower_management60_path_traversal.py 493 Bytes
from routersploit.modules.exploits.routers.cisco.firepower_management60_path_traversal import Exploit


def test_check_success(target):
    """ Test scenario - successful exploitation """

    route_mock = target.get_route_mock("/login.cgi", methods=["GET"])
    route_mock.return_value = (
        "test"
        "6.0.1"
        "test"
    )

    exploit = Exploit()
    exploit.target = target.host
    exploit.port = target.port

    assert exploit.check()
    assert exploit.run() is None