Lucene search

K
nessusThis script is Copyright (C) 2004-2021 Tenable Network Security, Inc.IKONBOARD_SQL_INJECT.NASL
HistoryDec 16, 2004 - 12:00 a.m.

Ikonboard ikonboard.cgi Multiple Parameter SQL Injection

2004-12-1600:00:00
This script is Copyright (C) 2004-2021 Tenable Network Security, Inc.
www.tenable.com
108

7.5 High

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:P/I:P/A:P

0.002 Low

EPSS

Percentile

57.5%

The remote server is running IkonBoard, a Web Bulletin Board System written in Perl.

The remote version of this software fails to sanitize user-supplied input to multiple variables in the ‘ikonboard.cgi’ script. An attacker can exploit this flaw to launch SQL injection attacks.

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
# 


include('deprecated_nasl_level.inc');
include('compat.inc');

if(description)
{
 script_id(15986);
 script_version("1.18");

 script_cve_id("CVE-2004-1406");
 script_bugtraq_id(11982);
 script_xref(name:"Secunia", value:"13513");
 
 script_name(english:"Ikonboard ikonboard.cgi Multiple Parameter SQL Injection");
 script_summary(english:"Checks for Ikonboard.cgi");
  
 script_set_attribute(attribute:"synopsis", value:
"The remote web server is hosting a Perl application that is affected
by multiple SQL injection vulnerabilities." );
 script_set_attribute(attribute:"description", value:
"The remote server is running IkonBoard, a Web Bulletin Board System
written in Perl.

The remote version of this software fails to sanitize user-supplied
input to multiple variables in the 'ikonboard.cgi' script.  An
attacker can exploit this flaw to launch SQL injection attacks." );
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2004/Dec/190" );
 script_set_attribute(attribute:"solution", value:
"There is no known solution at this time." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
 script_set_cvss_temporal_vector("CVSS2#E:H/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
 script_set_attribute(attribute:"exploit_available", value:"true");

 script_set_attribute(attribute:"plugin_publication_date", value: "2004/12/16");
 script_set_attribute(attribute:"vuln_publication_date", value: "2004/12/16");
 script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/19");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_set_attribute(attribute:"cpe", value:"cpe:/a:ikonboard.com:ikonboard");
 script_end_attributes();

 script_category(ACT_GATHER_INFO);
 
 script_copyright(english:"This script is Copyright (C) 2004-2021 Tenable Network Security, Inc.");
 script_family(english:"CGI abuses");

 script_dependencie("http_version.nasl");
 script_require_ports("Services/www", 80);
 script_exclude_keys("Settings/disable_cgi_scanning");
 exit(0);
}


include("global_settings.inc");
include("misc_func.inc");
include("http.inc");


port = get_http_port(default:80);


foreach d (cgi_dirs())
{
 res = http_send_recv3(method:"GET", item:d+"/ikonboard.cgi?act=ST&f=1&t=1&hl=nessus&st='", port:port);
 if (isnull(res)) exit(1, "The web server on port "+port+" failed to respond.");

 if ( "SELECT * FROM ib_forum_posts WHERE TOPIC_ID = '1' AND QUEUED <> '1' ORDER BY POST_DATE ASC LIMIT" >< res[2])
 {
   security_hole(port:port);
   set_kb_item(name:'www/'+port+'/SQLInjection',value:TRUE);
   exit(0);
 }
}
VendorProductVersionCPE
ikonboard.comikonboardcpe:/a:ikonboard.com:ikonboard

7.5 High

CVSS2

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

PARTIAL

Availability Impact

PARTIAL

AV:N/AC:L/Au:N/C:P/I:P/A:P

0.002 Low

EPSS

Percentile

57.5%

Related for IKONBOARD_SQL_INJECT.NASL