Lucene search

K
openvasCopyright (c) 2013 Greenbone Networks GmbHOPENVAS:803304
HistoryFeb 01, 2013 - 12:00 a.m.

Foxit Advanced PDF Editor Buffer Overflow Vulnerability

2013-02-0100:00:00
Copyright (c) 2013 Greenbone Networks GmbH
plugins.openvas.org
4

0.002 Low

EPSS

Percentile

64.7%

The host is installed with Foxit Advanced PDF Editor and is prone
to buffer overflow vulnerability.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_foxit_advanced_pdf_editor_bof_vuln.nasl 6086 2017-05-09 09:03:30Z teissa $
#
# Foxit Advanced PDF Editor Buffer Overflow Vulnerability
#
# Authors:
# Arun Kallavi <[email protected]>
#
# Copyright:
# Copyright (c) 2013 Greenbone Networks GmbH, http://www.greenbone.net
#
# 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 allows an attacker to execute arbitrary code or
  cause a denial-of-service.
  Impact Level: System/Application";

tag_affected = "Foxit Advanced PDF Editor Version 3.x before 3.04";
tag_insight = "The flaw caused due to stack buffer overflow, which allow attackers to
  execute arbitrary code via a crafted document containing instructions that
  reconstruct a certain security cookie.";
tag_solution = "Upgrade to the Foxit Advanced PDF Editor version 3.04 or later,
  For updates refer to http://www.foxitsoftware.com/downloads";
tag_summary = "The host is installed with Foxit Advanced PDF Editor and is prone
  to buffer overflow vulnerability.";

if(description)
{
  script_id(803304);
  script_version("$Revision: 6086 $");
  script_tag(name:"last_modification", value:"$Date: 2017-05-09 11:03:30 +0200 (Tue, 09 May 2017) $");
  script_tag(name:"creation_date", value:"2013-02-01 19:35:22 +0530 (Fri, 01 Feb 2013)");
  script_bugtraq_id(57558);
  script_cve_id("CVE-2013-0107");
  script_tag(name:"cvss_base", value:"7.6");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:H/Au:N/C:C/I:C/A:C");
  script_name("Foxit Advanced PDF Editor Buffer Overflow Vulnerability");
  script_xref(name : "URL" , value : "http://www.kb.cert.org/vuls/id/275219");
  script_xref(name : "URL" , value : "http://www.security-database.com/detail.php?alert=CVE-2013-0107");

  script_copyright("Copyright (c) 2013 Greenbone Networks GmbH");
  script_category(ACT_GATHER_INFO);
  script_tag(name:"qod_type", value:"registry");
  script_family("Buffer overflow");
  script_dependencies("gb_foxit_advanced_pdf_editor_detect_win.nasl");
  script_require_keys("Foxit/AdvancedEditor/Win/Ver");
  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);
}


include("version_func.inc");

# Variable Initialization
foxitVer ="";

# Get the version from KB
foxitVer = get_kb_item("Foxit/AdvancedEditor/Win/Ver");

# Check for Foxit Advanced PDF Editor Version
# If we install 3.04, it takes 3.0.4.0
if(foxitVer && foxitVer =~ "^3")
{
  if(version_is_less(version: foxitVer, test_version: "3.0.4.0")){
    security_message(0);
    exit(0);
  }
}

0.002 Low

EPSS

Percentile

64.7%