Lucene search

K
openvasCopyright (C) 2018 Greenbone Networks GmbHOPENVAS:1361412562310113092
HistoryJan 25, 2018 - 12:00 a.m.

HP Printers Information Disclosure Vulnerability (Jan 2018)

2018-01-2500:00:00
Copyright (C) 2018 Greenbone Networks GmbH
plugins.openvas.org
46

CVSS2

2.1

Attack Vector

LOCAL

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

NONE

Availability Impact

NONE

AV:L/AC:L/Au:N/C:P/I:N/A:N

CVSS3

7.8

Attack Vector

LOCAL

Attack Complexity

LOW

Privileges Required

LOW

User Interaction

NONE

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

EPSS

0

Percentile

12.6%

Multiple HP Printers may expose the credentials of the SMTP
server configured to receive and process emails generated by the printers.

# Copyright (C) 2018 Greenbone Networks GmbH
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# 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.

CPE_PREFIX = "cpe:/o:hp:";

if( description )
{
  script_oid("1.3.6.1.4.1.25623.1.0.113092");
  script_version("2022-02-15T10:35:00+0000");
  script_tag(name:"last_modification", value:"2022-02-15 10:35:00 +0000 (Tue, 15 Feb 2022)");
  script_tag(name:"creation_date", value:"2018-01-25 11:40:04 +0100 (Thu, 25 Jan 2018)");
  script_tag(name:"cvss_base", value:"2.1");
  script_tag(name:"cvss_base_vector", value:"AV:L/AC:L/Au:N/C:P/I:N/A:N");
  script_tag(name:"severity_vector", value:"CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H");
  script_tag(name:"severity_origin", value:"NVD");
  script_tag(name:"severity_date", value:"2019-10-03 00:03:00 +0000 (Thu, 03 Oct 2019)");

  script_tag(name:"qod_type", value:"remote_banner");

  script_tag(name:"solution_type", value:"VendorFix");

  script_cve_id("CVE-2017-2747");

  script_name("HP Printers Information Disclosure Vulnerability (Jan 2018)");

  script_category(ACT_GATHER_INFO);

  script_copyright("Copyright (C) 2018 Greenbone Networks GmbH");
  script_family("Web application abuses");
  script_dependencies("gb_hp_printer_consolidation.nasl");
  script_mandatory_keys("hp/printer/detected", "hp/printer/model");

  script_tag(name:"summary", value:"Multiple HP Printers may expose the credentials of the SMTP
  server configured to receive and process emails generated by the printers.");

  script_tag(name:"vuldetect", value:"Checks if a vulnerable version is present on the target host.");

  script_tag(name:"affected", value:"The following Models and Firmware Versions are affected:

  DesignJet T790, T795, T1300, T2300                              Firmware through IG_11_00_00.09

  DesignJet T920, T930, T1500, T1530, T2500, T2530                Firmware through MRY_04_05_00.4

  DesignJet T3500                                                 Firmware through AENEAS_03_04_00.8

  Latex 310, 330, 360, 370                                        Firmware through NEXUS_01_12_00.10

  Latex 315, 335, 365, 375                                        Firmware through NEXUS_03_12_00.14

  Latex 560, 570                                                  Firmware through STORM_00_05_01.5

  Latex 110                                                       Firmware through NEXUS_00_04_53.8");

  script_tag(name:"solution", value:"Update to a fixed version according to the printer model:

  DesignJet T790, T795, T1300, T2300                              Fixed version: IG_11_00_00.10

  DesignJet T920, T930, T1500, T1530, T2500, T2530                Fixed version: MRY_04_05_00.5

  DesignJet T3500                                                 Fixed version: AENEAS_03_04_00.9

  Latex 310, 330, 360, 370                                        Fixed version: NEXUS_01_12_00.11

  Latex 315, 335, 365, 375                                        Fixed version: NEXUS_03_12_00.15

  Latex 560, 570                                                  Fixed version: STORM_00_05_01.6

  Latex 110                                                       Update will be made available end of August 2018");

  script_xref(name:"URL", value:"https://support.hp.com/us-en/document/c05624457");

  exit(0);
}

include("host_details.inc");
include("version_func.inc");

if( ! model = get_kb_item( "hp/printer/model" ) )
  exit( 0 );

if( ! infos = get_app_port_from_cpe_prefix( cpe: CPE_PREFIX, first_cpe_only: TRUE ) )
  exit( 0 );

cpe = infos["cpe"];

if( ! fw_ver = get_app_version( cpe: cpe, nofork: TRUE ) )
  exit( 0 );

fw_ver = toupper( fw_ver );

IG = make_list( "designjet t790", "designjet t795", "designjet t1300", "designjet t2300" );
MRY = make_list( "designjet t920", "designjet t930", "designjet t1500", "designjet t1530", "designjet t2500", "designjet t2530" );
AENEAS = make_list( "designjet t3500" );
NEXUS_00 = make_list( "latex 110" );
NEXUS_01 = make_list( "latex 310", "latex 330", "latex 360", "latex 370" );
NEXUS_03 = make_list( "latex 315", "latex 335", "latex 365", "latex 375" );
STORM = make_list( "latex 560", "latex 570" );

foreach test_model( IG ) {
  if( test_model == tolower( model ) ) {
    version = ereg_replace( pattern: "IG_", string: fw_ver, replace: "" );
    version = ereg_replace( pattern: "_", string: version, replace: "." );
    if( version_is_less_equal( version: version, test_version: "11.00.00.9" ) ) {
      report = report_fixed_ver( installed_version: fw_ver, fixed_version: "IG_11_00_00.10" );
      security_message( data: report, port: 0 );
      exit( 0 );
    }
    exit( 99 );
  }
}

foreach test_model( MRY ) {
  if( test_model == tolower( model ) ) {
    version = ereg_replace( pattern: "MRY_", string: fw_ver, replace: "" );
    version = ereg_replace( pattern: "_", string: version, replace: "." );
    if( version_is_less_equal( version: version, test_version: "04.05.00.4" ) ) {
      report = report_fixed_ver( installed_version: fw_ver, fixed_version: "MRY_04_05_00.5" );
      security_message( data: report, port: 0 );
      exit( 0 );
    }
    exit( 99 );
  }
}

foreach test_model( AENEAS ) {
  if( test_model == tolower( model ) ) {
    version = ereg_replace( pattern: "AENEAS_", string: fw_ver, replace: "" );
    version = ereg_replace( pattern: "_", string: version, replace: "." );
    if( version_is_less_equal( version: version, test_version: "03.04.00.8" ) ) {
      report = report_fixed_ver( installed_version: fw_ver, fixed_version: "AENEAS_03_04_00.9" );
      security_message( data: report, port: 0 );
      exit( 0 );
    }
    exit( 99 );
  }
}

foreach test_model( NEXUS_00 ) {
  if( test_model == tolower( model ) ) {
    version = ereg_replace( pattern: "NEXUS_", string: fw_ver, replace: "" );
    version = ereg_replace( pattern: "_", string: version, replace: "." );
    if( version_is_less_equal( version: version, test_version: "00.04.53.8" ) ) {
      report = report_fixed_ver( installed_version: fw_ver, fixed_version: "NoneAvailable" );
      security_message( data: report, port: 0);
      exit( 0 );
    }
    exit( 99 );
  }
}

foreach test_model( NEXUS_01 ) {
  if( test_model == tolower( model ) ) {
    version = ereg_replace( pattern: "NEXUS_", string: fw_ver, replace: "" );
    version = ereg_replace( pattern: "_", string: version, replace: "." );
    if( version_is_less_equal( version: version, test_version: "01.12.00.10" ) ) {
      report = report_fixed_ver( installed_version: fw_ver, fixed_version: "NEXUS_01_12_00.11" );
      security_message( data: report, port: 0 );
      exit( 0 );
    }
    exit( 99 );
  }
}

foreach test_model( NEXUS_03 ) {
  if( test_model == tolower( model ) ) {
    version = ereg_replace( pattern: "NEXUS_", string: fw_ver, replace: "" );
    version = ereg_replace( pattern: "_", string: version, replace: "." );
    if( version_is_less_equal( version: version, test_version: "03.12.00.14" ) ) {
      report = report_fixed_ver( installed_version: fw_ver, fixed_version: "NEXUS_03_12_00.14" );
      security_message( data: report, port: 0 );
      exit( 0 );
    }
    exit( 99 );
  }
}

foreach test_model( STORM ) {
  if( test_model == tolower( model ) ) {
    version = ereg_replace( pattern: "STORM_", string: fw_ver, replace: "" );
    version = ereg_replace( pattern: "_", string: version, replace: "." );
    if( version_is_less_equal( version: version, test_version: "00.05.01.5" ) ) {
      report = report_fixed_ver( installed_version: fw_ver, fixed_version: "STORM_00_05_01.6" );
      security_message( data: report, port: 0 );
      exit( 0 );
    }
    exit( 99 );
  }
}

exit( 0 );

CVSS2

2.1

Attack Vector

LOCAL

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

PARTIAL

Integrity Impact

NONE

Availability Impact

NONE

AV:L/AC:L/Au:N/C:P/I:N/A:N

CVSS3

7.8

Attack Vector

LOCAL

Attack Complexity

LOW

Privileges Required

LOW

User Interaction

NONE

Scope

UNCHANGED

Confidentiality Impact

HIGH

Integrity Impact

HIGH

Availability Impact

HIGH

CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

EPSS

0

Percentile

12.6%

Related for OPENVAS:1361412562310113092