Lucene search

K

Format string on URI

🗓️ 03 Nov 2005 00:00:00Reported by Copyright (C) 2004 Michel ArboiType 
openvas
 openvas
🔗 plugins.openvas.org👁 373 Views

The remote web server is vulnerable to a format string attack on the URI, allowing for remote code execution or causing new behaviors that could compromise the security or stability of the system

Show more
Refs
Code
# SPDX-FileCopyrightText: 2004 Michel Arboi
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.15640");
  script_version("2023-07-21T05:05:22+0000");
  script_tag(name:"cvss_base", value:"10.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
  script_tag(name:"last_modification", value:"2023-07-21 05:05:22 +0000 (Fri, 21 Jul 2023)");
  script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
  script_name("Format string on URI");
  script_category(ACT_DESTRUCTIVE_ATTACK);
  script_copyright("Copyright (C) 2004 Michel Arboi");
  script_family("Gain a shell remotely");
  script_dependencies("find_service.nasl", "httpver.nasl", "global_settings.nasl");
  script_require_ports("Services/www", 80);
  script_exclude_keys("Settings/disable_cgi_scanning");

  script_tag(name:"summary", value:"The remote web server seems to be
  vulnerable to a format string attack on the URI. An attacker might use
  this flaw to make it crash or even execute arbitrary code on this host.");

  script_tag(name:"vuldetect", value:"Send a crafted request via HTTP
  GET and check whether the server is vulnerable to format string attack.");

  script_tag(name:"insight", value:"Flaw is due to  the application fails to
  properly sanitize user-supplied input before including it in the format-specifier
  argument of a formatted-printing function.");

  script_tag(name:"impact", value:"Successful exploitation will allow remote
  attackers to execute code, read the stack, or cause a segmentation fault in
  the running application, causing new behaviors that could compromise the security
  or the stability of the system.");

  script_tag(name:"solution", value:"Upgrade your software or contact your vendor
  and inform him of this vulnerability.");

  script_xref(name:"URL", value:"https://www.owasp.org/index.php/Format_string_attack");

  script_tag(name:"qod_type", value:"remote_probe");
  script_tag(name:"solution_type", value:"VendorFix");

  exit(0);
}

include("http_func.inc");
include("port_service_func.inc");
include("misc_func.inc");

port = http_get_port(default:80);
if(http_is_dead(port: port))
  exit(0);

req = http_get(item:strcat("/vt-test", rand_str(), ".html"), port:port);
soc = http_open_socket(port);
if(!soc)
  exit(0);

send(socket:soc, data:req);
r = http_recv(socket:soc);
http_close_socket(soc);

flag = 0;
flag2 = 0;

if(egrep(pattern:"[0-9a-fA-F]{8}", string:r))
  flag = 1;

soc = http_open_socket(port);
if(!soc)
  exit(0);

foreach method(make_list("GET", "HEAD", "OPTIONS", "TRACE", "MOVE", "INDEX", "MKDIR", "RMDIR", "PUT", "DELETE")) {

  foreach bad(make_list("%08x", "%s", "%#0123456x%08x%x%s%p%n%d%o%u%c%h%l%q%j%z%Z%t%i%e%g%f%a%C%S%08x%%#0123456x%%x%%s%%p%%n%%d%%o%%u%%c%%h%%l%%q%%j%%z%%Z%%t%%i%%e%%g%%f%%a%%C%%S%%08x")) {

    req2 = http_get(item:"/" + bad, port:port);
    req2 = ereg_replace(string:req2, pattern:"GET", replace:method);
    send(socket:soc, data:req2);
    r = http_recv(socket:soc);
    http_close_socket(soc);

    if(egrep(pattern:"[0-9a-fA-F]{8}", string:r))
      flag2++;

    soc = http_open_socket(port);
    if(!soc) {
      security_message(port);
      exit(0);
    }
  }
}

http_close_socket(soc);

if(http_is_dead(port: port)) {
  security_message(port:port);
  exit(0);
}

if(flag2 && ! flag) {
  security_message(port:port);
  exit(0);
}

exit(99);

Transform Your Security Services

Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contact us for a demo and discover the difference comprehensive, actionable intelligence can make in your security strategy.

Book a live demo
03 Nov 2005 00:00Current
8.1High risk
Vulners AI Score8.1
373
.json
Report