Lucene search

K
openvasThis script is Copyright (C) 2000 SecuriTeamOPENVAS:10354
HistoryNov 03, 2005 - 12:00 a.m.

vqServer administrative port

2005-11-0300:00:00
This script is Copyright (C) 2000 SecuriTeam
plugins.openvas.org
5

EPSS

0.026

Percentile

90.4%

vqSoft’s vqServer administrative port is open. Brute force guessing of the
username/password is possible, and a bug in versions 1.9.9 and below
allows configuration file retrieval remotely.

For more information, see:
http://www.securiteam.com/windowsntfocus/Some_Web_servers_are_still_vulnerable_to_the_dotdotdot_vulnerability.html

# OpenVAS Vulnerability Test
# $Id: vqServer_admin_detect.nasl 5829 2017-04-03 07:00:29Z cfi $
# Description: vqServer administrative port
#
# Authors:
# Noam Rathaus <[email protected]>
# Changes by rd :
#	- solution
#	- script id
#
# Copyright:
# Copyright (C) 2000 SecuriTeam
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2,
# as published by the Free Software Foundation
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#

tag_summary = "vqSoft's vqServer administrative port is open. Brute force guessing of the 
username/password is possible, and a bug in versions 1.9.9 and below 
allows configuration file retrieval remotely.

For more information, see:
http://www.securiteam.com/windowsntfocus/Some_Web_servers_are_still_vulnerable_to_the_dotdotdot_vulnerability.html";

tag_solution = "close this port for outside access.";

if(description)
{
 script_id(10354);
 script_version("$Revision: 5829 $");
 script_tag(name:"last_modification", value:"$Date: 2017-04-03 09:00:29 +0200 (Mon, 03 Apr 2017) $");
 script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
 script_bugtraq_id(1610);
 script_cve_id("CVE-2000-0766");
 script_tag(name:"cvss_base", value:"7.5");
 script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:P");
 script_name("vqServer administrative port");
 script_category(ACT_GATHER_INFO);
 script_tag(name:"qod_type", value:"remote_banner");
 script_copyright("This script is Copyright (C) 2000 SecuriTeam");
 script_family("Service detection");
 
 script_require_ports("Services/vqServer-admin", 9090);
 script_dependencies("find_service.nasl", "http_version.nasl");
 script_exclude_keys("Settings/disable_cgi_scanning");

 script_tag(name : "solution" , value : tag_solution);
 script_tag(name : "summary" , value : tag_summary);
 exit(0);
}

include("http_func.inc");
include("http_keepalive.inc");

port = get_kb_item( "Services/vqServer-admin" );
if( ! port ) port = 9090;
if( ! get_port_state( port ) ) exit( 0 );

banner = http_get_cache( item:"/", port:port );

if( ( "Server: vqServer" >< banner ) && ( "WWW-Authenticate: Basic realm=/" >< banner ) ) {
  res = strstr(banner, "Server: ");
  sub = strstr(res, string("\n"));
  res = res - sub;
  res = res - "Server: ";
  res = res - "\n";
   
  banner = string("vqServer version is : ");
  banner = banner + res;
  security_message(port:port, data:banner);
}

exit( 0 );

EPSS

0.026

Percentile

90.4%

Related for OPENVAS:10354