Lucene search

K

openSUSE Security Update : perl (openSUSE-SU-2011:1278-1)

πŸ—“οΈΒ 13 Jun 2014Β 00:00:00Reported byΒ This script is Copyright (C) 2014-2021 and is owned by Tenable, Inc. or an Affiliate thereof.TypeΒ 
nessus
Β nessus
πŸ”—Β www.tenable.comπŸ‘Β 34Β Views

openSUSE Security Update: Perl heap based buffer overflow fix (CVE-2011-2939

Show more
Related
Refs
Code
ReporterTitlePublishedViews
Family
UbuntuCve
CVE-2011-2939
13 Jan 201200:00
–ubuntucve
Prion
Heap overflow
13 Jan 201218:55
–prion
Debian CVE
CVE-2011-2939
13 Jan 201218:55
–debiancve
NVD
CVE-2011-2939
13 Jan 201218:55
–nvd
ALT Linux
Security fix for the ALT Linux 6 package perl-Encode version 2.47-alt0.M60P.1
30 Oct 201200:00
–altlinux
Tenable Nessus
openSUSE Security Update : perl (openSUSE-SU-2011:1278-1)
13 Jun 201400:00
–nessus
Tenable Nessus
openSUSE Security Update : icedtea-web (openSUSE-SU-2011:1251-1)
13 Jun 201400:00
–nessus
Tenable Nessus
Scientific Linux Security Update : perl on SL6.x i386/x86_64
1 Aug 201200:00
–nessus
Tenable Nessus
Amazon Linux AMI : perl (ALAS-2011-19)
4 Sep 201300:00
–nessus
Tenable Nessus
openSUSE Security Update : icedtea-web (openSUSE-SU-2011:1251-1)
13 Jun 201400:00
–nessus
Rows per page
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
# The descriptive text and package checks in this plugin were
# extracted from openSUSE Security Update perl-5471.
#
# The text description of this plugin is (C) SUSE LLC.
#

include('deprecated_nasl_level.inc');
include('compat.inc');

if (description)
{
  script_id(75707);
  script_version("1.7");
  script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/14");

  script_cve_id("CVE-2011-2939");

  script_name(english:"openSUSE Security Update : perl (openSUSE-SU-2011:1278-1)");
  script_summary(english:"Check for the perl-5471 patch");

  script_set_attribute(
    attribute:"synopsis", 
    value:"The remote openSUSE host is missing a security update."
  );
  script_set_attribute(
    attribute:"description", 
    value:
"This update of Perl fixes a heap based buffer overflow in the
decode_xs() function (CVE-2011-2939, bnc#728662)."
  );
  script_set_attribute(
    attribute:"see_also",
    value:"https://bugzilla.novell.com/show_bug.cgi?id=728662"
  );
  script_set_attribute(
    attribute:"see_also",
    value:"https://lists.opensuse.org/opensuse-updates/2011-11/msg00026.html"
  );
  script_set_attribute(attribute:"solution", value:"Update the affected perl packages.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:H/Au:N/C:P/I:P/A:P");
  script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
  script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"false");

  script_set_attribute(attribute:"plugin_type", value:"local");
  script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:perl");
  script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:perl-32bit");
  script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:perl-base");
  script_set_attribute(attribute:"cpe", value:"p-cpe:/a:novell:opensuse:perl-base-32bit");
  script_set_attribute(attribute:"cpe", value:"cpe:/o:novell:opensuse:11.3");

  script_set_attribute(attribute:"patch_publication_date", value:"2011/11/22");
  script_set_attribute(attribute:"plugin_publication_date", value:"2014/06/13");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_copyright(english:"This script is Copyright (C) 2014-2021 and is owned by Tenable, Inc. or an Affiliate thereof.");
  script_family(english:"SuSE Local Security Checks");

  script_dependencies("ssh_get_info.nasl");
  script_require_keys("Host/local_checks_enabled", "Host/SuSE/release", "Host/SuSE/rpm-list", "Host/cpu");

  exit(0);
}


include("audit.inc");
include("global_settings.inc");
include("rpm.inc");

if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
release = get_kb_item("Host/SuSE/release");
if (isnull(release) || release =~ "^(SLED|SLES)") audit(AUDIT_OS_NOT, "openSUSE");
if (release !~ "^(SUSE11\.3)$") audit(AUDIT_OS_RELEASE_NOT, "openSUSE", "11.3", release);
if (!get_kb_item("Host/SuSE/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);

ourarch = get_kb_item("Host/cpu");
if (!ourarch) audit(AUDIT_UNKNOWN_ARCH);
if (ourarch !~ "^(i586|i686|x86_64)$") audit(AUDIT_ARCH_NOT, "i586 / i686 / x86_64", ourarch);

flag = 0;

if ( rpm_check(release:"SUSE11.3", reference:"perl-5.12.1-2.7.1") ) flag++;
if ( rpm_check(release:"SUSE11.3", reference:"perl-base-5.12.1-2.7.1") ) flag++;
if ( rpm_check(release:"SUSE11.3", cpu:"x86_64", reference:"perl-32bit-5.12.1-2.7.1") ) flag++;
if ( rpm_check(release:"SUSE11.3", cpu:"x86_64", reference:"perl-base-32bit-5.12.1-2.7.1") ) flag++;

if (flag)
{
  if (report_verbosity > 0) security_warning(port:0, extra:rpm_report_get());
  else security_warning(0);
  exit(0);
}
else
{
  tested = pkg_tests_get();
  if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
  else audit(AUDIT_PACKAGE_NOT_INSTALLED, "perl");
}

Transform Your Security Services

Elevate your offerings with Vulners' advanced Vulnerability Intelligence. ContactΒ us for a demo andΒ discover the difference comprehensive, actionable intelligence can make in your security strategy.

Book a live demo
13 Jun 2014 00:00Current
6.7Medium risk
Vulners AI Score6.7
CVSS25.1
EPSS0.027
34
.json
Report