Lucene search
K

Adobe JRun Management Console Multiple Vulnerabilities

🗓️ 26 Aug 2009 00:00:00Reported by Copyright (C) 2009 SecPodType 
openvas
 openvas
🔗 plugins.openvas.org👁 24 Views

Adobe JRun Management Console Multiple Vulnerabilities (Windows

Related
Refs
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2009-1873
18 Aug 200900:00
circl
Check Point Advisories
Preemptive Protection against Adobe JRun 4.0 Directory Traversal File Read Vulnerability (APSB09-12)
18 Aug 200900:00
checkpoint_advisories
Check Point Advisories
Update Protection against Adobe JRun 4 Management Console Cross-Site Scripting Vulnerability (APSB09-12)
17 Sep 200900:00
checkpoint_advisories
CVE
CVE-2009-1873
18 Aug 200922:00
cve
CVE
CVE-2009-1874
18 Aug 200922:00
cve
Cvelist
CVE-2009-1873
18 Aug 200922:00
cvelist
Cvelist
CVE-2009-1874
18 Aug 200922:00
cvelist
Exploit DB
Adobe JRun 4 - 'logfile' (Authenticated) Directory Traversal
18 Aug 200900:00
exploitdb
EUVD
EUVD-2009-1868
7 Oct 202500:30
euvd
EUVD
EUVD-2009-1869
7 Oct 202500:30
euvd
Rows per page
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_adobe_jrun_mult_vuln_win.nasl 7573 2017-10-26 09:18:50Z cfischer $
#
# Adobe JRun Management Console Multiple Vulnerabilities (Windows)
#
# Authors:
# Sharath S <[email protected]>
#
# Copyright:
# Copyright (c) 2009 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_solution = "Apply the security updates.
  http://download.macromedia.com/pub/coldfusion/updates/jmc-app.ear

  *****
  NOTE: Ignore this warning if above mentioned patch is already applied.
  *****";

tag_impact = "Successful exploitation could allow remote attackers to cause XSS attacks or
  Directory Traversal attack using the affected application.
  Impact Level: System/Application";
tag_affected = "Adobe JRun version 4.0 on Windows";
tag_insight = "- Multiple XSS vulnerabilities exists due to error in the Management
    Console which can be exploited to inject arbitrary web script or HTML via
    unspecified vectors.
  - A Directory traversal attack is possible due to error in
    logging/logviewer.jsp in the Management Console which can be exploited
    by authenticated users to read arbitrary files via a .. (dot dot) in the
    logfile parameter.";
tag_summary = "The host is running Adobe JRun and is prone to multiple vulnerabilities.";

if(description)
{
  script_id(900823);
  script_version("$Revision: 7573 $");
  script_tag(name:"last_modification", value:"$Date: 2017-10-26 11:18:50 +0200 (Thu, 26 Oct 2017) $");
  script_tag(name:"creation_date", value:"2009-08-26 14:01:08 +0200 (Wed, 26 Aug 2009)");
  script_tag(name:"cvss_base", value:"4.3");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:N/I:P/A:N");
  script_cve_id("CVE-2009-1873", "CVE-2009-1874");
  script_bugtraq_id(36047, 36050);
  script_name("Adobe JRun Management Console Multiple Vulnerabilities");


  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2009 SecPod");
  script_family("Web application abuses");
  script_dependencies("secpod_adobe_jrun_detect.nasl", "secpod_reg_enum.nasl");
  script_require_ports(139, 445);
  script_mandatory_keys("/Adobe/JRun/Ver", "SMB/WindowsVersion");

  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name:"qod_type", value:"registry");
  script_tag(name:"solution_type", value:"VendorFix");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/36329/");
  script_xref(name : "URL" , value : "http://www.dsecrg.com/pages/vul/show.php?id=151");
  script_xref(name : "URL" , value : "http://www.adobe.com/support/security/bulletins/apsb09-12.html");
  exit(0);
}


include("smb_nt.inc");
include("http_func.inc");
include("version_func.inc");
include("secpod_smb_func.inc");

jrunVer = get_kb_item("/Adobe/JRun/Ver");

if(jrunVer =~ "^4")
{
  if(!get_kb_item("SMB/WindowsVersion")){
    exit(0);
  }

  jrunFile = registry_get_sz(key:"SOFTWARE\Macromedia\Install Data\JRun 4",
                            item:"INSTALLDIR");
  jrunFile += "\bin\jrun.exe";
  share = ereg_replace(pattern:"([A-Z]):.*", replace:"\1$", string:jrunFile);
  jrun = ereg_replace(pattern:"[A-Z]:(.*)", replace:"\1", string:jrunFile);
  jrunVer = GetVer(file:jrun, share:share);

  # Check for Adobe JRun version 4.0 < 4.0.7.43085
  if(version_in_range(version:jrunVer, test_version:"4.0",
                                      test_version2:"4.0.7.43085")){
    security_message(port: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

26 Oct 2017 00:00Current
0.3Low risk
Vulners AI Score0.3
EPSS0.03693
24