Vulnerabilities > CVE-2005-3912

047910
CVSS 7.5 - HIGH
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
PARTIAL
Integrity impact
PARTIAL
Availability impact
PARTIAL
network
low complexity
webmin
debian
nessus

Summary

Format string vulnerability in miniserv.pl Perl web server in Webmin before 1.250 and Usermin before 1.180, with syslog logging enabled, allows remote attackers to cause a denial of service (crash or memory consumption) and possibly execute arbitrary code via format string specifiers in the username parameter to the login form, which is ultimately used in a syslog call. NOTE: the code execution might be associated with an issue in Perl.

Nessus

  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2005-1113.NASL
    descriptionFixed CVE-2005-3962 / CVE-2005-3912: http://marc.theaimsgroup.com/?l=full-disclosure&m=113342788118630&w=2 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2005-3912 backported upstream patch #26240 Note that Tenable Network Security has extracted the preceding description block directly from the Fedora security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-01
    modified2020-06-02
    plugin id20257
    published2005-12-07
    reporterThis script is Copyright (C) 2005-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/20257
    titleFedora Core 4 : perl-5.8.6-18 (2005-1113)
    code
    #%NASL_MIN_LEVEL 80502
    
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were  
    # extracted from Fedora Security Advisory 2005-1113.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(20257);
      script_version ("1.18");
      script_cvs_date("Date: 2019/08/02 13:32:23");
    
      script_cve_id("CVE-2005-3912");
      script_bugtraq_id(15629);
      script_xref(name:"FEDORA", value:"2005-1113");
    
      script_name(english:"Fedora Core 4 : perl-5.8.6-18 (2005-1113)");
      script_summary(english:"Checks rpm output for the updated packages.");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:"The remote Fedora Core host is missing a security update."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "Fixed CVE-2005-3962 / CVE-2005-3912:
    http://marc.theaimsgroup.com/?l=full-disclosure&m=113342788118630&w=2
    http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2005-3912 backported
    upstream patch #26240
    
    Note that Tenable Network Security has extracted the preceding
    description block directly from the Fedora security advisory. Tenable
    has attempted to automatically clean and format it as much as possible
    without introducing additional issues."
      );
      # http://marc.theaimsgroup.com/?l=full-disclosure&m=113342788118630&w=2
      script_set_attribute(
        attribute:"see_also",
        value:"http://marc.info/?l=full-disclosure&m=113342788118630&w=2"
      );
      # https://lists.fedoraproject.org/pipermail/announce/2005-December/001617.html
      script_set_attribute(
        attribute:"see_also",
        value:"http://www.nessus.org/u?f3f50c58"
      );
      script_set_attribute(
        attribute:"solution", 
        value:
    "Update the affected perl, perl-debuginfo and / or perl-suidperl
    packages."
      );
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
      script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:ND");
      script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
      script_set_attribute(attribute:"exploit_available", value:"true");
      script_set_attribute(attribute:"exploit_framework_core", value:"true");
      script_set_attribute(attribute:"exploit_framework_canvas", value:"true");
      script_set_attribute(attribute:"canvas_package", value:'CANVAS');
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:fedoraproject:fedora:perl");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:fedoraproject:fedora:perl-debuginfo");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:fedoraproject:fedora:perl-suidperl");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:fedoraproject:fedora_core:4");
    
      script_set_attribute(attribute:"patch_publication_date", value:"2005/12/01");
      script_set_attribute(attribute:"plugin_publication_date", value:"2005/12/07");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2005-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
      script_family(english:"Fedora Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/RedHat/release", "Host/RedHat/rpm-list");
    
      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/RedHat/release");
    if (isnull(release) || "Fedora" >!< release) audit(AUDIT_OS_NOT, "Fedora");
    os_ver = eregmatch(pattern: "Fedora.*release ([0-9]+)", string:release);
    if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Fedora");
    os_ver = os_ver[1];
    if (! ereg(pattern:"^4([^0-9]|$)", string:os_ver)) audit(AUDIT_OS_NOT, "Fedora 4.x", "Fedora " + os_ver);
    
    if (!get_kb_item("Host/RedHat/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    cpu = get_kb_item("Host/cpu");
    if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "Fedora", cpu);
    
    flag = 0;
    if (rpm_check(release:"FC4", reference:"perl-5.8.6-18")) flag++;
    if (rpm_check(release:"FC4", reference:"perl-debuginfo-5.8.6-18")) flag++;
    if (rpm_check(release:"FC4", reference:"perl-suidperl-5.8.6-18")) flag++;
    
    
    if (flag)
    {
      if (report_verbosity > 0) security_hole(port:0, extra:rpm_report_get());
      else security_hole(0);
      exit(0);
    }
    else
    {
      tested = pkg_tests_get();
      if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
      else audit(AUDIT_PACKAGE_NOT_INSTALLED, "perl / perl-debuginfo / perl-suidperl");
    }
    
  • NASL familyFreeBSD Local Security Checks
    NASL idFREEBSD_PKG_BB33981A7AC611DABF7200123F589060.NASL
    descriptionThe Perl Development page reports : Dyad Security recently released a security advisory explaining how in certain cases, a carefully crafted format string passed to sprintf can cause a buffer overflow. This buffer overflow can then be used by an attacker to execute code on the machine. This was discovered in the context of a design problem with the Webmin administration package that allowed a malicious user to pass unchecked data into sprintf.
    last seen2020-06-01
    modified2020-06-02
    plugin id21504
    published2006-05-13
    reporterThis script is Copyright (C) 2006-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/21504
    titleFreeBSD : perl, webmin, usermin -- perl format string integer wrap vulnerability (bb33981a-7ac6-11da-bf72-00123f589060)
    code
    #%NASL_MIN_LEVEL 80502
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were  
    # extracted from the FreeBSD VuXML database :
    #
    # Copyright 2003-2018 Jacques Vidrine and contributors
    #
    # Redistribution and use in source (VuXML) and 'compiled' forms (SGML,
    # HTML, PDF, PostScript, RTF and so forth) with or without modification,
    # are permitted provided that the following conditions are met:
    # 1. Redistributions of source code (VuXML) must retain the above
    #    copyright notice, this list of conditions and the following
    #    disclaimer as the first lines of this file unmodified.
    # 2. Redistributions in compiled form (transformed to other DTDs,
    #    published online in any format, converted to PDF, PostScript,
    #    RTF and other formats) must reproduce the above copyright
    #    notice, this list of conditions and the following disclaimer
    #    in the documentation and/or other materials provided with the
    #    distribution.
    # 
    # THIS DOCUMENTATION IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS"
    # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
    # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
    # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
    # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
    # OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
    # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
    # BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
    # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
    # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS DOCUMENTATION,
    # EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(21504);
      script_version("1.18");
      script_cvs_date("Date: 2019/08/02 13:32:38");
    
      script_cve_id("CVE-2005-3912", "CVE-2005-3962");
      script_bugtraq_id(15629);
    
      script_name(english:"FreeBSD : perl, webmin, usermin -- perl format string integer wrap vulnerability (bb33981a-7ac6-11da-bf72-00123f589060)");
      script_summary(english:"Checks for updated packages in pkg_info output");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:
    "The remote FreeBSD host is missing one or more security-related
    updates."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "The Perl Development page reports :
    
    Dyad Security recently released a security advisory explaining how in
    certain cases, a carefully crafted format string passed to sprintf can
    cause a buffer overflow. This buffer overflow can then be used by an
    attacker to execute code on the machine. This was discovered in the
    context of a design problem with the Webmin administration package
    that allowed a malicious user to pass unchecked data into sprintf."
      );
      # http://dev.perl.org/perl5/news/2005/perl_patches_fix_sprintf_buffer.html
      script_set_attribute(
        attribute:"see_also",
        value:"http://www.nessus.org/u?6f9c3013"
      );
      # http://www.dyadsecurity.com/perl-0002.html
      script_set_attribute(
        attribute:"see_also",
        value:"http://www.nessus.org/u?a844180b"
      );
      # http://www.dyadsecurity.com/webmin-0001.html
      script_set_attribute(
        attribute:"see_also",
        value:"http://www.nessus.org/u?e5db4928"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"http://www.webmin.com/security.html"
      );
      # https://vuxml.freebsd.org/freebsd/bb33981a-7ac6-11da-bf72-00123f589060.html
      script_set_attribute(
        attribute:"see_also",
        value:"http://www.nessus.org/u?27165a73"
      );
      script_set_attribute(attribute:"solution", value:"Update the affected packages.");
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
      script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:ND");
      script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
      script_set_attribute(attribute:"exploit_available", value:"true");
      script_set_attribute(attribute:"exploit_framework_core", value:"true");
      script_set_attribute(attribute:"exploit_framework_canvas", value:"true");
      script_set_attribute(attribute:"canvas_package", value:'CANVAS');
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:freebsd:freebsd:perl");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:freebsd:freebsd:usermin");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:freebsd:freebsd:webmin");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:freebsd:freebsd");
    
      script_set_attribute(attribute:"vuln_publication_date", value:"2005/09/23");
      script_set_attribute(attribute:"patch_publication_date", value:"2006/02/15");
      script_set_attribute(attribute:"plugin_publication_date", value:"2006/05/13");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2006-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
      script_family(english:"FreeBSD Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/FreeBSD/release", "Host/FreeBSD/pkg_info");
    
      exit(0);
    }
    
    
    include("audit.inc");
    include("freebsd_package.inc");
    
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    if (!get_kb_item("Host/FreeBSD/release")) audit(AUDIT_OS_NOT, "FreeBSD");
    if (!get_kb_item("Host/FreeBSD/pkg_info")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    
    flag = 0;
    
    if (pkg_test(save_report:TRUE, pkg:"perl>=5.6.0<5.6.2")) flag++;
    if (pkg_test(save_report:TRUE, pkg:"perl>=5.8.0<5.8.7_1")) flag++;
    if (pkg_test(save_report:TRUE, pkg:"webmin<1.250")) flag++;
    if (pkg_test(save_report:TRUE, pkg:"usermin<1.180")) flag++;
    
    if (flag)
    {
      if (report_verbosity > 0) security_hole(port:0, extra:pkg_report_get());
      else security_hole(0);
      exit(0);
    }
    else audit(AUDIT_HOST_NOT, "affected");
    
  • NASL familyDebian Local Security Checks
    NASL idDEBIAN_DSA-1199.NASL
    descriptionSeveral vulnerabilities have been identified in webmin, a web-based administration toolkit. The Common Vulnerabilities and Exposures project identifies the following vulnerabilities : - CVE-2005-3912 A format string vulnerability in miniserv.pl could allow an attacker to cause a denial of service by crashing the application or exhausting system resources, and could potentially allow arbitrary code execution. - CVE-2006-3392 Improper input sanitization in miniserv.pl could allow an attacker to read arbitrary files on the webmin host by providing a specially crafted URL path to the miniserv http server. - CVE-2006-4542 Improper handling of null characters in URLs in miniserv.pl could allow an attacker to conduct cross-site scripting attacks, read CGI program source code, list local directories, and potentially execute arbitrary code. Stable updates are available for alpha, amd64, arm, hppa, i386, ia64, m68k, mips, mipsel, powerpc, s390 and sparc.
    last seen2020-06-01
    modified2020-06-02
    plugin id22908
    published2006-10-25
    reporterThis script is Copyright (C) 2006-2019 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/22908
    titleDebian DSA-1199-1 : webmin - multiple vulnerabilities
    code
    #%NASL_MIN_LEVEL 80502
    
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were  
    # extracted from Debian Security Advisory DSA-1199. The text 
    # itself is copyright (C) Software in the Public Interest, Inc.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(22908);
      script_version("1.19");
      script_cvs_date("Date: 2019/08/02 13:32:20");
    
      script_cve_id("CVE-2005-3912", "CVE-2006-3392", "CVE-2006-4542");
      script_bugtraq_id(15629, 18744, 19820);
      script_xref(name:"DSA", value:"1199");
    
      script_name(english:"Debian DSA-1199-1 : webmin - multiple vulnerabilities");
      script_summary(english:"Checks dpkg output for the updated package");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:"The remote Debian host is missing a security-related update."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "Several vulnerabilities have been identified in webmin, a web-based
    administration toolkit. The Common Vulnerabilities and Exposures
    project identifies the following vulnerabilities :
    
      - CVE-2005-3912
        A format string vulnerability in miniserv.pl could allow
        an attacker to cause a denial of service by crashing the
        application or exhausting system resources, and could
        potentially allow arbitrary code execution.
    
      - CVE-2006-3392
        Improper input sanitization in miniserv.pl could allow
        an attacker to read arbitrary files on the webmin host
        by providing a specially crafted URL path to the
        miniserv http server.
    
      - CVE-2006-4542
        Improper handling of null characters in URLs in
        miniserv.pl could allow an attacker to conduct
        cross-site scripting attacks, read CGI program source
        code, list local directories, and potentially execute
        arbitrary code.
    
    Stable updates are available for alpha, amd64, arm, hppa, i386, ia64,
    m68k, mips, mipsel, powerpc, s390 and sparc."
      );
      script_set_attribute(
        attribute:"see_also",
        value:"http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=341394"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=381537"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=391284"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://security-tracker.debian.org/tracker/CVE-2005-3912"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://security-tracker.debian.org/tracker/CVE-2006-3392"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"https://security-tracker.debian.org/tracker/CVE-2006-4542"
      );
      script_set_attribute(
        attribute:"see_also",
        value:"http://www.debian.org/security/2006/dsa-1199"
      );
      script_set_attribute(
        attribute:"solution", 
        value:
    "Upgrade the webmin (1.180-3sarge1) package.
    
    For the stable distribution (sarge), these problems have been fixed in
    version 1.180-3sarge1.
    
    Webmin is not included in unstable (sid) or testing (etch), so these
    problems are not present."
      );
      script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:P/I:P/A:P");
      script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:C");
      script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
      script_set_attribute(attribute:"exploit_available", value:"true");
      script_set_attribute(attribute:"exploit_framework_core", value:"true");
      script_set_attribute(attribute:"exploit_framework_canvas", value:"true");
      script_set_attribute(attribute:"canvas_package", value:'CANVAS');
    
      script_set_attribute(attribute:"plugin_type", value:"local");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:debian:debian_linux:webmin");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:debian:debian_linux:3.1");
    
      script_set_attribute(attribute:"patch_publication_date", value:"2006/10/23");
      script_set_attribute(attribute:"plugin_publication_date", value:"2006/10/25");
      script_set_attribute(attribute:"vuln_publication_date", value:"2005/11/29");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2006-2019 Tenable Network Security, Inc.");
      script_family(english:"Debian Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/Debian/release", "Host/Debian/dpkg-l");
    
      exit(0);
    }
    
    
    include("audit.inc");
    include("debian_package.inc");
    
    
    if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
    if (!get_kb_item("Host/Debian/release")) audit(AUDIT_OS_NOT, "Debian");
    if (!get_kb_item("Host/Debian/dpkg-l")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    
    flag = 0;
    if (deb_check(release:"3.1", prefix:"webmin", reference:"1.180-3sarge1")) flag++;
    if (deb_check(release:"3.1", prefix:"webmin-core", reference:"1.180-3sarge1")) flag++;
    
    if (flag)
    {
      if (report_verbosity > 0) security_hole(port:0, extra:deb_report_get());
      else security_hole(0);
      exit(0);
    }
    else audit(AUDIT_HOST_NOT, "affected");
    
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2005-1145.NASL
    descriptiono Updated upstream fix for sprintf integer overflow vulnerabilities CVE-2005-3962 and CVE-2005-3912, including new Sys::Syslog 0.08 o Updated fix for bug 136009 / MakeMaker LD_RUN_PATH issue: restore previous default Red Hat behavior of removing the MakeMaker generated LD_RUN_PATH setting from the link command . Document this removal, as it contravenes upstream default behavior, and provide a USE_MM_LD_RUN_PATH MakeMaker member to enable use of the MakeMaker generated LD_RUN_PATH . Note that Tenable Network Security has extracted the preceding description block directly from the Fedora security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-01
    modified2020-06-02
    plugin id20310
    published2005-12-15
    reporterThis script is Copyright (C) 2005-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/20310
    titleFedora Core 3 : perl-5.8.5-22.FC3 (2005-1145)
    code
    #%NASL_MIN_LEVEL 80502
    
    #
    # (C) Tenable Network Security, Inc.
    #
    # The descriptive text and package checks in this plugin were  
    # extracted from Fedora Security Advisory 2005-1145.
    #
    
    include("compat.inc");
    
    if (description)
    {
      script_id(20310);
      script_version ("1.17");
      script_cvs_date("Date: 2019/08/02 13:32:23");
    
      script_bugtraq_id(15629);
      script_xref(name:"FEDORA", value:"2005-1145");
    
      script_name(english:"Fedora Core 3 : perl-5.8.5-22.FC3 (2005-1145)");
      script_summary(english:"Checks rpm output for the updated packages.");
    
      script_set_attribute(
        attribute:"synopsis", 
        value:"The remote Fedora Core host is missing a security update."
      );
      script_set_attribute(
        attribute:"description", 
        value:
    "o Updated upstream fix for sprintf integer overflow vulnerabilities
    CVE-2005-3962 and CVE-2005-3912, including new Sys::Syslog 0.08
    
    o Updated fix for bug 136009 / MakeMaker LD_RUN_PATH issue: restore
    previous default Red Hat behavior of removing the MakeMaker generated
    LD_RUN_PATH setting from the link command . Document this removal, as
    it contravenes upstream default behavior, and provide a
    USE_MM_LD_RUN_PATH MakeMaker member to enable use of the MakeMaker
    generated LD_RUN_PATH .
    
    Note that Tenable Network Security has extracted the preceding
    description block directly from the Fedora security advisory. Tenable
    has attempted to automatically clean and format it as much as possible
    without introducing additional issues."
      );
      # https://lists.fedoraproject.org/pipermail/announce/2005-December/001659.html
      script_set_attribute(
        attribute:"see_also",
        value:"http://www.nessus.org/u?750f7f52"
      );
      script_set_attribute(
        attribute:"solution", 
        value:
    "Update the affected perl, perl-debuginfo and / or perl-suidperl
    packages."
      );
      script_set_cvss_base_vector("CVSS2#AV:A/AC:L/Au:N/C:N/I:N/A:P");
      script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:ND");
      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:fedoraproject:fedora:perl");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:fedoraproject:fedora:perl-debuginfo");
      script_set_attribute(attribute:"cpe", value:"p-cpe:/a:fedoraproject:fedora:perl-suidperl");
      script_set_attribute(attribute:"cpe", value:"cpe:/o:fedoraproject:fedora_core:3");
    
      script_set_attribute(attribute:"patch_publication_date", value:"2005/12/14");
      script_set_attribute(attribute:"plugin_publication_date", value:"2005/12/15");
      script_end_attributes();
    
      script_category(ACT_GATHER_INFO);
      script_copyright(english:"This script is Copyright (C) 2005-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
      script_family(english:"Fedora Local Security Checks");
    
      script_dependencies("ssh_get_info.nasl");
      script_require_keys("Host/local_checks_enabled", "Host/RedHat/release", "Host/RedHat/rpm-list");
    
      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/RedHat/release");
    if (isnull(release) || "Fedora" >!< release) audit(AUDIT_OS_NOT, "Fedora");
    os_ver = eregmatch(pattern: "Fedora.*release ([0-9]+)", string:release);
    if (isnull(os_ver)) audit(AUDIT_UNKNOWN_APP_VER, "Fedora");
    os_ver = os_ver[1];
    if (! ereg(pattern:"^3([^0-9]|$)", string:os_ver)) audit(AUDIT_OS_NOT, "Fedora 3.x", "Fedora " + os_ver);
    
    if (!get_kb_item("Host/RedHat/rpm-list")) audit(AUDIT_PACKAGE_LIST_MISSING);
    
    cpu = get_kb_item("Host/cpu");
    if (isnull(cpu)) audit(AUDIT_UNKNOWN_ARCH);
    if ("x86_64" >!< cpu && cpu !~ "^i[3-6]86$") audit(AUDIT_LOCAL_CHECKS_NOT_IMPLEMENTED, "Fedora", cpu);
    
    flag = 0;
    if (rpm_check(release:"FC3", reference:"perl-5.8.5-22.FC3")) flag++;
    if (rpm_check(release:"FC3", reference:"perl-debuginfo-5.8.5-22.FC3")) flag++;
    if (rpm_check(release:"FC3", reference:"perl-suidperl-5.8.5-22.FC3")) flag++;
    
    
    if (flag)
    {
      if (report_verbosity > 0) security_note(port:0, extra:rpm_report_get());
      else security_note(0);
      exit(0);
    }
    else
    {
      tested = pkg_tests_get();
      if (tested) audit(AUDIT_PACKAGE_NOT_AFFECTED, tested);
      else audit(AUDIT_PACKAGE_NOT_INSTALLED, "perl / perl-debuginfo / perl-suidperl");
    }
    
  • NASL familyCGI abuses
    NASL idWEBMIN_MINISERV_USERNAME_FORMAT_STRING.NASL
    descriptionThe version of Webmin installed on the remote host contains a format string flaw when logging failed authentication attempts. Using specially crafted values for the
    last seen2020-06-01
    modified2020-06-02
    plugin id20343
    published2005-12-26
    reporterThis script is Copyright (C) 2005-2018 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/20343
    titleWebmin 'miniserv.pl' 'username' Parameter Format String
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2005-1144.NASL
    descriptiono Updated upstream fix for sprintf integer overflow vulnerabilities CVE-2005-3962 and CVE-2005-3912, including new Sys::Syslog 0.08 o Updated fix for bug 136009 / MakeMaker LD_RUN_PATH issue: restore previous default Red Hat behavior of removing the MakeMaker generated LD_RUN_PATH setting from the link command .Document this removal, as it contravenes upstream default behavior, and provide a USE_MM_LD_RUN_PATH MakeMaker member to enable use of the MakeMaker generated LD_RUN_PATH . Note that Tenable Network Security has extracted the preceding description block directly from the Fedora security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-01
    modified2020-06-02
    plugin id20309
    published2005-12-15
    reporterThis script is Copyright (C) 2005-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/20309
    titleFedora Core 4 : perl-5.8.6-22 (2005-1144)
  • NASL familyCGI abuses
    NASL idWEBMIN_1_250.NASL
    descriptionAccording to its self-reported version, the Webmin install hosted on the remote host is prior to 1.250. It is, therefore, affected by a remote code execution vulnerability if syslog logging is enabled.
    last seen2020-06-01
    modified2020-06-02
    plugin id108549
    published2018-03-22
    reporterThis script is Copyright (C) 2018-2019 and is owned by Tenable, Inc. or an Affiliate thereof.
    sourcehttps://www.tenable.com/plugins/nessus/108549
    titleWebmin < 1.250 miniserv.pl Remote Code Execution
  • NASL familyFedora Local Security Checks
    NASL idFEDORA_2005-1116.NASL
    descriptionFixes security vulnerabilites: CVE-2005-3962: http://marc.theaimsgroup.com/?l=full-disclosure&m=113342788118630&w=2 CVE-2005-3912: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2005-3912 CVE-2005-0452: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2005-0452 CVE-2004-0976: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2004-0976 Note that Tenable Network Security has extracted the preceding description block directly from the Fedora security advisory. Tenable has attempted to automatically clean and format it as much as possible without introducing additional issues.
    last seen2020-06-01
    modified2020-06-02
    plugin id20258
    published2005-12-07
    reporterThis script is Copyright (C) 2005-2019 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/20258
    titleFedora Core 3 : perl-5.8.5-18.FC3 (2005-1116)
  • NASL familyMandriva Local Security Checks
    NASL idMANDRAKE_MDKSA-2005-223.NASL
    descriptionJack Louis discovered a format string vulnerability in miniserv.pl Perl web server in Webmin before 1.250 and Usermin before 1.180, with syslog logging enabled. This can allow remote attackers to cause a denial of service (crash or memory consumption) and possibly execute arbitrary code via format string specifiers in the username parameter to the login form, which is ultimately used in a syslog call.
    last seen2020-06-01
    modified2020-06-02
    plugin id20454
    published2006-01-15
    reporterThis script is Copyright (C) 2006-2019 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/20454
    titleMandrake Linux Security Advisory : webmin (MDKSA-2005:223)
  • NASL familyGentoo Local Security Checks
    NASL idGENTOO_GLSA-200512-02.NASL
    descriptionThe remote host is affected by the vulnerability described in GLSA-200512-02 (Webmin, Usermin: Format string vulnerability) Jack Louis discovered that the Webmin and Usermin
    last seen2020-06-01
    modified2020-06-02
    plugin id20281
    published2005-12-08
    reporterThis script is Copyright (C) 2005-2019 Tenable Network Security, Inc.
    sourcehttps://www.tenable.com/plugins/nessus/20281
    titleGLSA-200512-02 : Webmin, Usermin: Format string vulnerability

Seebug

bulletinFamilyexploit
descriptionBUGTRAQ ID: 15629 CVE(CAN) ID: CVE-2005-3962,CVE-2005-3912 Perl是一种免费且功能强大的编程语言。 由于Perl没有正确的处理格式化打印函数中的格式指示符导致了格式串溢出漏洞,远程攻击者可能利用此漏洞在主机上执行任意指令。 参数格式串(%I$n)中的INT_MAX值可能导致Perl_sv_vcatpvfn函数中的efix出现整数溢出。攻击者可以利用这个漏洞远程执行任意指令或导致拒绝服务。 Larry Wall Perl <= 5.9.2 Webmin Webmin <= 1.240 Webmin Usermin <= 1.170 Debian ------ Debian已经为此发布了一个安全公告(DSA-943-1)以及相应补丁: DSA-943-1:New Perl packages fix arbitrary code execution 链接:<a href="http://www.debian.org/security/2005/dsa-943" target="_blank">http://www.debian.org/security/2005/dsa-943</a> 补丁下载: Source archives: <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3.dsc" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3.dsc</a> Size/MD5 checksum: 738 88756767017d421351e02a5226457d2b <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3.diff.gz" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3.diff.gz</a> Size/MD5 checksum: 87851 05a72533cd5bde5fce6987cf39041236 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4.orig.tar.gz" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4.orig.tar.gz</a> Size/MD5 checksum: 12094233 912050a9cb6b0f415b76ba56052fb4cf Architecture independent components: <a href="http://security.debian.org/pool/updates/main/p/perl/libcgi-fast-perl_5.8.4-8sarge3_all.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libcgi-fast-perl_5.8.4-8sarge3_all.deb</a> Size/MD5 checksum: 38332 7d47e456c2bd7c83312bb1ad17738284 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-doc_5.8.4-8sarge3_all.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-doc_5.8.4-8sarge3_all.deb</a> Size/MD5 checksum: 7053372 47e14a8f071c506916e40713e8cc81f7 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-modules_5.8.4-8sarge3_all.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-modules_5.8.4-8sarge3_all.deb</a> Size/MD5 checksum: 2178216 4823e4985f8cf1b4af78ec26afbc0102 Alpha architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_alpha.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_alpha.deb</a> Size/MD5 checksum: 805438 0e3cb34c8c093515c7b33fa60a493899 <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_alpha.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_alpha.deb</a> Size/MD5 checksum: 1040 f82603c65e3f3def2356962111e411c2 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_alpha.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_alpha.deb</a> Size/MD5 checksum: 3901974 f744b7b871a8071cb403a74d665b7778 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_alpha.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_alpha.deb</a> Size/MD5 checksum: 874714 26e450d8f0375e5a3545c2988205cee4 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_alpha.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_alpha.deb</a> Size/MD5 checksum: 4133098 cf772af3fa70e0cf320b43964aeab61e <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_alpha.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_alpha.deb</a> Size/MD5 checksum: 37080 d3863820eaebcbbbe59775a1874da2eb AMD64 architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_amd64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_amd64.deb</a> Size/MD5 checksum: 605284 c6e097980b5dec33bb340e8f4c76de19 <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_amd64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_amd64.deb</a> Size/MD5 checksum: 1030 08b7c6bb0bb58a02a254826cfee27e33 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_amd64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_amd64.deb</a> Size/MD5 checksum: 3834144 e7f33d48427be694e994c18f7321d9e0 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_amd64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_amd64.deb</a> Size/MD5 checksum: 791678 bdbedf5f0e3efb20181a0665d791c6de <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_amd64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_amd64.deb</a> Size/MD5 checksum: 3934814 ed946cdd2984a538b60acbd034264947 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_amd64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_amd64.deb</a> Size/MD5 checksum: 32852 ae96f1f115505ab983ed389dee240a83 ARM architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_arm.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_arm.deb</a> Size/MD5 checksum: 613158 30cd5528198d49208274e50e60611b0a <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_arm.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_arm.deb</a> Size/MD5 checksum: 1026 fc64aa8b67f46fcccb6d85db7cb242ad <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_arm.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_arm.deb</a> Size/MD5 checksum: 3132808 226a69d4fa30d1e0a40f4d761826c230 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_arm.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_arm.deb</a> Size/MD5 checksum: 737524 b4aaf84bd60fef147d1131c5ffbc6a0a <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_arm.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_arm.deb</a> Size/MD5 checksum: 3719460 8e8d12058f9f7fb9e153d4c3ff79d0f4 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_arm.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_arm.deb</a> Size/MD5 checksum: 29880 faa9dc0401eb667e202e12f2d2cf9643 Intel IA-32 architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_i386.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_i386.deb</a> Size/MD5 checksum: 567048 8488e40844019795a1179a2b9a74f172 <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_i386.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_i386.deb</a> Size/MD5 checksum: 508818 66f7900d63a2efb0a787e83186613a98 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_i386.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_i386.deb</a> Size/MD5 checksum: 3237948 5841d065408022fb2fe0e75febc02d9d <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_i386.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_i386.deb</a> Size/MD5 checksum: 751956 b77e882ed9558a09398c2fba334e5b4a <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_i386.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_i386.deb</a> Size/MD5 checksum: 3735798 bb034b2e756aa35cd5fa9e01a0485b13 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_i386.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_i386.deb</a> Size/MD5 checksum: 31696 d2c9b1fbc10e89e7868e16fb4c97700d Intel IA-64 architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_ia64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_ia64.deb</a> Size/MD5 checksum: 866818 3419fdaff605b7ddd485a205c1dd1661 <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_ia64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_ia64.deb</a> Size/MD5 checksum: 1030 c41835cc5573c0e53610e79766b88d11 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_ia64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_ia64.deb</a> Size/MD5 checksum: 4027834 28436948c3dd298ad38b3c46f69f2cb4 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_ia64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_ia64.deb</a> Size/MD5 checksum: 1046750 1a70c30abb13449d00a2b34c17c79f17 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_ia64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_ia64.deb</a> Size/MD5 checksum: 4534216 49cdfeada4c40365e2392a768739d706 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_ia64.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_ia64.deb</a> Size/MD5 checksum: 50104 770378e5ac290729b2943d956cad9c57 HP Precision architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_hppa.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_hppa.deb</a> Size/MD5 checksum: 654878 5f8ad153b0a27e9190e5b754e8174ee7 <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_hppa.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_hppa.deb</a> Size/MD5 checksum: 1032 4de6d72cf1f61d6754475a0dd1fe4561 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_hppa.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_hppa.deb</a> Size/MD5 checksum: 3918544 0f83d76853299d10f98842b15b8e7db1 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_hppa.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_hppa.deb</a> Size/MD5 checksum: 867566 cb3a0eb20c71bd8017853de9ea838f7f <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_hppa.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_hppa.deb</a> Size/MD5 checksum: 3911882 fd55c787eb9f30f2e143fac490ea4198 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_hppa.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_hppa.deb</a> Size/MD5 checksum: 34484 e3df6ab97d5e68cbb6346240e4532efc Motorola 680x0 architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_m68k.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_m68k.deb</a> Size/MD5 checksum: 457778 f25f1ebbbb4a5ce7b7a4a79c6256987e <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_m68k.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_m68k.deb</a> Size/MD5 checksum: 1040 9882ea5db94e569a35209a66c74bb390 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_m68k.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_m68k.deb</a> Size/MD5 checksum: 3815032 321dd2b80abad424b678f260d18f323a <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_m68k.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_m68k.deb</a> Size/MD5 checksum: 692196 733bfa10857d842bd907f408b03a8b3d <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_m68k.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_m68k.deb</a> Size/MD5 checksum: 3008672 81a0d0613ebe7b9affcd56174e1f955c <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_m68k.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_m68k.deb</a> Size/MD5 checksum: 27934 68de12bace4cf3de7a339b25119b1611 Big endian MIPS architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_mips.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_mips.deb</a> Size/MD5 checksum: 657066 7e2c9980c630b3aa1e60348a4998665a <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_mips.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_mips.deb</a> Size/MD5 checksum: 1032 3da5c1e82b6194beac8fe7020a38d7a3 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_mips.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_mips.deb</a> Size/MD5 checksum: 3384320 edfa53822abb7626b2bfd6ac4d5923df <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_mips.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_mips.deb</a> Size/MD5 checksum: 781078 f4a7b2e1bbd95c9381503b382d35ba58 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_mips.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_mips.deb</a> Size/MD5 checksum: 4017490 ddca3a084b7c9f1b841bd3f93e39a1d0 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_mips.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_mips.deb</a> Size/MD5 checksum: 32314 51f707f1c1d3df1c3ad05dc545512c10 Little endian MIPS architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_mipsel.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_mipsel.deb</a> Size/MD5 checksum: 653526 e7a527c0ed8475df75b3803690081445 <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_mipsel.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_mipsel.deb</a> Size/MD5 checksum: 1038 e7b83c957a6c6822ee5614574653d80e <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_mipsel.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_mipsel.deb</a> Size/MD5 checksum: 3125384 4446da60977e961ca64ec93a331b0803 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_mipsel.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_mipsel.deb</a> Size/MD5 checksum: 781672 14e3d605298699dc99e2e5e20310c6b2 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_mipsel.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_mipsel.deb</a> Size/MD5 checksum: 3967890 3ab0c5407e2b5816ad55e47d7c256869 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_mipsel.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_mipsel.deb</a> Size/MD5 checksum: 32434 4f171621c453755b731ce34bad930a62 PowerPC architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_powerpc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_powerpc.deb</a> Size/MD5 checksum: 625118 41b2364e5073cd1e177fd6c3e5f455c5 <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_powerpc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_powerpc.deb</a> Size/MD5 checksum: 1038 2d18de4839ef016646127f4a104f17a1 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_powerpc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_powerpc.deb</a> Size/MD5 checksum: 3509324 77fe7a0288d42bbe7abc9357682cdc1b <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_powerpc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_powerpc.deb</a> Size/MD5 checksum: 790116 9e189589ef99e78d0f0ddef4fb06440e <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_powerpc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_powerpc.deb</a> Size/MD5 checksum: 3701264 886260a4033209be2431ff908cc032e5 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_powerpc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_powerpc.deb</a> Size/MD5 checksum: 33582 ec48dc685b7ac64fb722458e0954edc8 IBM S/390 architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_s390.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_s390.deb</a> Size/MD5 checksum: 604116 a2e6f8ee63267dfcf3df2e05f92ce958 <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_s390.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_s390.deb</a> Size/MD5 checksum: 1032 4d6c1ce7b2f9789fc31cc2440f39a832 <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_s390.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_s390.deb</a> Size/MD5 checksum: 3819738 c9523a97cd0716e67821dd6e7508615f <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_s390.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_s390.deb</a> Size/MD5 checksum: 800132 ebfc849dbaf0be2afa771a3d5b632467 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_s390.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_s390.deb</a> Size/MD5 checksum: 4234804 30fcc4ea55599b8365a0f96153755466 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_s390.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_s390.deb</a> Size/MD5 checksum: 33244 a55373a563d2546d1286f7fb4de11710 Sun Sparc architecture: <a href="http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_sparc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl-dev_5.8.4-8sarge3_sparc.deb</a> Size/MD5 checksum: 582422 8ec81b47b82fdb3602c42c6fa0559793 <a href="http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_sparc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/libperl5.8_5.8.4-8sarge3_sparc.deb</a> Size/MD5 checksum: 1038 ebbf066210ca33b4282cf347cc771cca <a href="http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_sparc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl_5.8.4-8sarge3_sparc.deb</a> Size/MD5 checksum: 3547312 a609080c2c788fd382f970c21b22d9e7 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_sparc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-base_5.8.4-8sarge3_sparc.deb</a> Size/MD5 checksum: 775666 0e0a56ce4bb224e7bc96ea68ac741d8b <a href="http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_sparc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-debug_5.8.4-8sarge3_sparc.deb</a> Size/MD5 checksum: 3840718 e9ded2d7974b51fbf7933b455b45b604 <a href="http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_sparc.deb" target="_blank">http://security.debian.org/pool/updates/main/p/perl/perl-suid_5.8.4-8sarge3_sparc.deb</a> Size/MD5 checksum: 31034 8cf1966a2428838c58f0fab423b8e16a 补丁安装方法: 1. 手工安装补丁包: 首先,使用下面的命令来下载补丁软件: # wget url (url是补丁下载链接地址) 然后,使用下面的命令来安装补丁: # dpkg -i file.deb (file是相应的补丁名) 2. 使用apt-get自动安装补丁包: 首先,使用下面的命令更新内部数据库: # apt-get update 然后,使用下面的命令安装更新软件包: # apt-get upgrade HP -- HP已经为此发布了一个安全公告(HPSBTU02125)以及相应补丁: HPSBTU02125:SSRT061105 rev.1 - HP Tru64 UNIX Running Perl 5.8.2 and earlier, Local Unauthorized Code Execution 链接:<a href="http://www2.itrc.hp.com/service/cki/docDisplay.do?docId=c00686865&hpweb_printable=true" target="_blank">http://www2.itrc.hp.com/service/cki/docDisplay.do?docId=c00686865&hpweb_printable=true</a> RedHat ------ RedHat已经为此发布了安全公告(RHSA-2005:880-01,RHSA-2005:881-01)以及相应补丁: RHSA-2005:880-01:Moderate: perl security update 链接:<a href="http://lwn.net/Alerts/165025/?format=printable" target="_blank">http://lwn.net/Alerts/165025/?format=printable</a> RHSA-2005:881-01:Moderate: perl security update 链接:<a href="http://lwn.net/Alerts/165026/?format=printable" target="_blank">http://lwn.net/Alerts/165026/?format=printable</a> SGI --- SGI已经为此发布了一个安全公告(20060101-01-U)以及相应补丁: 20060101-01-U:SGI Advanced Linux Environment 3 Security Update #53 链接:<a href="ftp://patches.sgi.com/support/free/security/advisories/20060101-01-U.asc" target="_blank">ftp://patches.sgi.com/support/free/security/advisories/20060101-01-U.asc</a> Sun --- Sun已经为此发布了一个安全公告(Sun-Alert-102192)以及相应补丁: Sun-Alert-102192:Integer Overflow Vulnerability in Perl May Lead to Application Crash or Code Execution 链接:<a href="http://sunsolve.sun.com/search/printfriendly.do?assetkey=1-26-102192-1" target="_blank">http://sunsolve.sun.com/search/printfriendly.do?assetkey=1-26-102192-1</a> Webmin ------ 目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载: * Webmin Upgrade webmin-1.250.tar.gz <a href="http://prdownloads.sourceforge.net/webadmin/webmin-1.250.tar.gz" target="_blank">http://prdownloads.sourceforge.net/webadmin/webmin-1.250.tar.gz</a> * Webmin Upgrade usermin-1.180.tar.gz <a href="http://prdownloads.sourceforge.net/webadmin/usermin-1.180.tar.gz" target="_blank">http://prdownloads.sourceforge.net/webadmin/usermin-1.180.tar.gz</a> Gentoo ------ Gentoo已经为此发布了一个安全公告(GLSA-200512-01)以及相应补丁: GLSA-200512-01:Perl: Format string errors can lead to code execution 链接:<a href="http://security.gentoo.org/glsa/glsa-200512-01.xml" target="_blank">http://security.gentoo.org/glsa/glsa-200512-01.xml</a> 所有Perl用户都应升级到最新版本: # emerge --sync # emerge --ask --oneshot --verbose dev-lang/perl
idSSV:630
last seen2017-11-19
modified2006-11-30
published2006-11-30
reporterRoot
titlePerl格式串处理整数溢出漏洞