Lucene search
K

Finger Service Unused Account Disclosure Vulnerability

🗓️ 29 Aug 2011 00:00:00Reported by Copyright (c) 2011 SecPodType 
openvas
 openvas
🔗 plugins.openvas.org👁 18 Views

Finger Service Unused Account Disclosure Vulnerability, Successful exploitation could lead to sensitive information disclosure

Related
Refs
Code
ReporterTitlePublishedViews
Family
Tenable Nessus
Finger Service Detection
20 Aug 200400:00
nessus
Tenable Nessus
Finger Service Detection
20 Aug 200400:00
nessus
Tenable Nessus
Finger 0@host Unused Account Disclosure
22 Jun 199900:00
nessus
CVE
CVE-1999-0197
4 Feb 200005:00
cve
Cvelist
CVE-1999-0197
4 Feb 200005:00
cvelist
EUVD
EUVD-1999-0197
7 Oct 202500:30
euvd
NVD
CVE-1999-0197
1 Jan 199905:00
nvd
OpenVAS
Finger Service Unused Account Disclosure Vulnerability
29 Aug 201100:00
openvas
Positive Technologies
PT-1999-1010 · Finger · Finger
1 Jan 199900:00
ptsecurity
RedhatCVE
CVE-1999-0197
7 Jan 202609:42
redhatcve
Rows per page
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_finger_unused_account_disc_vuln.nasl 7019 2017-08-29 11:51:27Z teissa $
#
# Finger Service Unused Account Disclosure Vulnerability
#
# Authors:
# Sooraj KS <[email protected]>
#
# Copyright:
# Copyright (c) 2011 SecPod, http://www.secpod.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), 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_impact = "Successful exploitation will allow attacker to obtain sensitive information
  that could aid in further attacks.
  Impact Level: Application";
tag_affected = "GNU Finger.";
tag_insight = "The flaw exists due to finger service display a list of unused accounts for
  a 'finger 0@host' request.";
tag_solution = "Disable finger service, or install a finger service or daemon that
  limits the type of information provided.";
tag_summary = "This host is running Finger service and is prone to information
  disclosure vulnerability.";

if(description)
{
  script_id(902555);
  script_version("$Revision: 7019 $");
  script_tag(name:"last_modification", value:"$Date: 2017-08-29 13:51:27 +0200 (Tue, 29 Aug 2017) $");
  script_tag(name:"creation_date", value:"2011-08-29 16:22:41 +0200 (Mon, 29 Aug 2011)");
  script_cve_id("CVE-1999-0197");
  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_name("Finger Service Unused Account Disclosure Vulnerability");
  script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/8378");
  script_xref(name : "URL" , value : "http://www.iss.net/security_center/reference/vuln/finger-unused-accounts.htm");

  script_tag(name:"qod_type", value:"remote_vul");
  script_category(ACT_ATTACK);
  script_copyright("Copyright (c) 2011 SecPod");
  script_family("Finger abuses");
  script_dependencies("find_service.nasl");
  script_require_ports("Services/finger", 79);
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  exit(0);
}


## Get Finger Port
port = get_kb_item("Services/finger");
if(!port){
  port = 79;
}

## Check Port Status
if(! get_port_state(port)){
  exit(0);
}

## Open TCP Socket
soc = open_sock_tcp(port);
if(! soc){
  exit(0);
}

## Confirm Finger
banner = recv(socket:soc, length:2048, timeout:5);
if(banner) {
  exit(0);
}

## Send And Receive The Response
send(socket: soc, data: string("0\r\n"));
res = recv(socket:soc, length:2048);
close(soc);

## Confirm Vulnerability
if(strlen(res) > 150)
{
  if("adm" >< res || "bin" >< res || "daemon" >< res ||
      "lp" >< res || "sys" >< res){
    security_message(port);
  }
}

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

29 Aug 2017 00:00Current
6.5Medium risk
Vulners AI Score6.5
EPSS0.00483
18