# OpenVAS Vulnerability Test
# $Id: nfs_user_mount.nasl 8023 2017-12-07 08:36:26Z teissa $
# Description: User Mountable NFS shares
#
# Authors:
# Renaud Deraison, modified 2004 Michael Stone
#
# Copyright:
# Copyright (C) 2003 Renaud Deraison, modified 2004 Michael Stone
#
# 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_solution = "Configure NFS on the remote host so that only authorized hosts can mount
the remote shares.
The remote NFS server should prevent mount requests originating from a non-privileged port.";
tag_summary = "It is possible to access the remote NFS shares without having root privileges.
Description :
Some of the NFS shares exported by the remote server could be
mounted by the scanning host. An attacker may exploit this problem
to gain read (and possibly write) access to files on remote host.
Note that root privileges were not required to mount the remote shares. That is,
the source port to mount the shares was bigger than 1024.";
if(description)
{
script_id(80028);
script_version("$Revision: 8023 $");
script_tag(name:"last_modification", value:"$Date: 2017-12-07 09:36:26 +0100 (Thu, 07 Dec 2017) $");
script_tag(name:"creation_date", value:"2008-10-24 20:15:31 +0200 (Fri, 24 Oct 2008)");
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");
name = "User Mountable NFS shares";
script_name(name);
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"remote_vul");
script_copyright("This script is Copyright (C) 2003 Renaud Deraison, modified 2004 Michael Stone");
family = "Remote file access";
script_family(family);
script_dependencies("secpod_rpc_portmap.nasl", "showmount.nasl");
script_require_keys("rpc/portmap");
script_tag(name : "summary" , value : tag_summary);
script_tag(name : "solution" , value : tag_solution);
exit(0);
}
include("misc_func.inc");
include("byte_func.inc");
include("nfs_func.inc");
mountable = NULL;
list = get_kb_list("nfs/exportlist");
if(isnull(list))exit(0);
shares = make_list(list);
port = get_rpc_port(program:100005, protocol:IPPROTO_UDP);
if ( ! port ) exit(0);
soc = open_sock_udp(port);
port2 = get_rpc_port(program:100003, protocol:IPPROTO_UDP);
if ( ! port2 ) exit(0);
soc2 = open_sock_udp(port2);
if(!soc)exit(0);
foreach share (shares)
{
fid = mount(soc:soc, share:share);
if(fid)
{
content = readdir(soc:soc2, fid:fid);
mountable += '+ ' + share + '\n' ;
flag = 0;
foreach c (content)
{
if(flag == 0){
mountable += ' + Contents of ' + share + ' : \n';
flag = 1;
}
mountable += ' - ' + c + '\n';
}
umount(soc:soc, share:share);
mountable += '\n\n';
}
}
close(soc);
if(mountable)
{
report = string("The following NFS shares could be mounted without root privileges: \n", mountable);
security_message(port:2049, proto:"udp", data:report);
}
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