Lucene search
K

vqServer administrative port

🗓️ 03 Nov 2005 00:00:00Reported by This script is Copyright (C) 2000 SecuriTeamType 
openvas
 openvas
🔗 plugins.openvas.org👁 9 Views

vqServer administrative port is open, allowing brute force guessing of credentials and remote configuration file retrieval

Related
Code
ReporterTitlePublishedViews
Family
CVE
CVE-2000-0766
22 Jan 200105:00
cve
Cvelist
CVE-2000-0766
22 Jan 200105:00
cvelist
EUVD
EUVD-2000-0760
7 Oct 202500:30
euvd
NVD
CVE-2000-0766
20 Oct 200004:00
nvd
OpenVAS
vqServer < 1.9.53 Buffer Overflow Vulnerability
28 Sep 202000:00
openvas
# 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 );

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

03 Apr 2017 00:00Current
0.5Low risk
Vulners AI Score0.5
EPSS0.0491
9