| Reporter | Title | Published | Views | Family All 37 |
|---|---|---|---|---|
| Rsync < 2.6.3 Sanitize_path Function Module Path Escaping | 20 Aug 200400:00 | – | nessus | |
| Debian DSA-538-1 : rsync - unsanitised input processing | 29 Sep 200400:00 | – | nessus | |
| FreeBSD : rsync -- path sanitizing vulnerability (2689f4cb-ec4c-11d8-9440-000347a4fa7d) | 13 Jul 200500:00 | – | nessus | |
| FreeBSD Ports : rsync < 2.6.2_2 | 27 Aug 200400:00 | – | nessus | |
| GLSA-200408-17 : rsync: Potential information leakage | 30 Aug 200400:00 | – | nessus | |
| Mandrake Linux Security Advisory : rsync (MDKSA-2004:083) | 22 Aug 200400:00 | – | nessus | |
| RHEL 2.1 / 3 : rsync (RHSA-2004:436) | 1 Sep 200400:00 | – | nessus | |
| rsync sanitize_path() Function Arbitrary File Disclosure | 16 Aug 200400:00 | – | nessus | |
| Slackware 10.0 / 8.1 / 9.0 / 9.1 / current : rsync (SSA:2004-285-01) | 13 Jul 200500:00 | – | nessus | |
| rsync -- path sanitizing vulnerability | 12 Aug 200400:00 | – | freebsd |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: rsync_path_sanitation_vuln.nasl 4207 2016-10-04 11:57:02Z cfi $
#
# rsync path sanitation vulnerability
#
# Authors:
# David Maciejak <david dot maciejak at kyxar dot fr>
# based on work from (C) Tenable Network Security
#
# Copyright:
# Copyright (C) 2004 David Maciejak
#
# 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.
###############################################################################
# Ref: Reported by vendor
if(description)
{
script_id(14223);
script_version("$Revision: 4207 $");
script_tag(name:"last_modification", value:"$Date: 2016-10-04 13:57:02 +0200 (Tue, 04 Oct 2016) $");
script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
script_bugtraq_id(10938);
script_cve_id("CVE-2004-0792");
script_name("rsync path sanitation vulnerability");
script_tag(name:"cvss_base", value:"6.4");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:N");
script_category(ACT_GATHER_INFO);
script_family("Gain a shell remotely");
script_copyright("This script is Copyright (C) 2004 David Maciejak");
script_dependencies("rsync_modules.nasl");
script_require_ports("Services/rsync", 873);
tag_summary = "A vulnerability has been reported in rsync, which potentially can be exploited
by malicious users to read or write arbitrary files on a vulnerable system.
rsync is a software product for keeping files synched across multiple
systems. Rsync is a network-based program and typically communicates
over TCP port 873.";
tag_impact = "There is a flaw in this version of rsync which, due to an input validation
error, would allow a remote attacker to gain access to the remote system.";
tag_insight = "An attacker, exploiting this flaw, would need network access to the TCP port.
Successful exploitation requires that the rsync daemon is *not* running chrooted.
*** Since rsync does not advertise its version number
*** and since there are little details about this flaw at
*** this time, this might be a false positive";
tag_solution = "Upgrade to rsync 2.6.3 or newer.";
script_tag(name:"summary", value:tag_summary);
script_tag(name:"impact", value:tag_impact);
script_tag(name:"insight", value:tag_insight);
script_tag(name:"solution", value:tag_solution);
script_tag(name:"solution_type", value: "VendorFix");
script_tag(name:"qod_type", value:"remote_banner_unreliable");
exit(0);
}
include("rsync_func.inc");
port = get_rsync_port( default:873 );
welcome = get_kb_item( "rsync/" + port + "/banner" );
if ( ! welcome ) {
soc = open_sock_tcp( port );
if( ! soc ) exit( 0 );
welcome = recv_line( socket:soc, length:4096 );
if( ! welcome ) exit( 0 );
}
# rsyncd speaking protocol 28 are not vulnerable
if( ereg( pattern:"@RSYNCD: (1[0-9]|2[0-8])", string:welcome ) ) {
security_message( port:port );
exit( 0 );
}
exit( 99 );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