Lucene search
+L

IPFire < 2.17 - Core Update 91 Multiple Vulnerabilities

🗓️ 30 Jun 2015 00:00:00Reported by Copyright (C) 2015 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 59 Views

IPFire 2.17 - Core Update 91 fixes multiple security vulnerabilities in OpenSSL and StrongSwan IPse

Related
Refs
Code
ReporterTitlePublishedViews
Family
ibm
IBM Security Bulletins
Security Bulletin: IBM Flex System Manager is affected by a vulnerability from FSM’s use of strongswan: (CVE-2015-4171)
18 Jun 201801:29
ibm
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in OpenSSL including Logjam affect Sterling Connect:Express for UNIX (CVE-2015-4000, CVE-2014-8176, CVE-2015-1788, CVE-2015-1789, CVE-2015-1790, CVE-2015-1791, CVE-2015-1792)
24 Jul 202022:49
ibm
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Open Source OpenSSL affects the IBM FlashSystem models 840 and 900 (CVE-2015-1788, CVE-2015-1789, CVE-2015-1791, and CVE-2015-3216)
18 Feb 202301:45
ibm
ibm
IBM Security Bulletins
Security Bulletin: Multiple vulnerabilities in OpenSSL affect IBM Security Network Protection
16 Jun 201821:25
ibm
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in OpenSSL including Logjam affect Informix Genero (CVE-2015-1789, CVE-2015-1790, CVE-2015-1791, CVE-2015-1792 & CVE-2015-4000)
3 Jun 202116:41
ibm
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in OpenSSL affect multiple N series products
15 Dec 202118:05
ibm
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in OpenSSL affect IBM Storwize V7000 Unified (CVE-2014-8176, CVE-2015-1789, CVE-2015-1790, CVE-2015-1791, CVE-2015-1792)
18 Jun 201800:09
ibm
ibm
IBM Security Bulletins
Security Bulletin: IBM Cognos Business Intelligence Sever 2015Q3 Security Updater : IBM Cognos Business Intelligence Server is affected by multiple vulnerabilities
15 Jun 201823:13
ibm
ibm
IBM Security Bulletins
Security Bulletin: A vulnerability in GSKit affects IBM Security Network Protection (CVE-2015-1788)
16 Jun 201821:25
ibm
ibm
IBM Security Bulletins
IBM Security Network Protection / IBM QRadar Network Security / XGS Technote Index
31 Jan 202100:10
ibm
Rows per page
# SPDX-FileCopyrightText: 2015 Greenbone AG
# 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-only

if (description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.105308");
  script_version("2025-07-17T05:43:33+0000");
  script_cve_id("CVE-2015-1788", "CVE-2015-1789", "CVE-2015-1790", "CVE-2015-1792",
                "CVE-2015-1791", "CVE-2014-8176", "CVE-2015-3991", "CVE-2015-4171");
  script_tag(name:"cvss_base", value:"7.5");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:P/I:P/A:P");
  script_tag(name:"last_modification", value:"2025-07-17 05:43:33 +0000 (Thu, 17 Jul 2025)");
  script_tag(name:"severity_vector", value:"CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
  script_tag(name:"severity_origin", value:"NVD");
  script_tag(name:"severity_date", value:"2018-08-13 21:47:00 +0000 (Mon, 13 Aug 2018)");
  script_tag(name:"creation_date", value:"2015-06-30 12:19:16 +0200 (Tue, 30 Jun 2015)");
  script_name("IPFire < 2.17 - Core Update 91 Multiple Vulnerabilities");
  script_category(ACT_GATHER_INFO);
  script_family("General");
  script_copyright("Copyright (C) 2015 Greenbone AG");
  script_dependencies("gather-package-list.nasl");
  script_mandatory_keys("ipfire/system-release");

  script_xref(name:"URL", value:"https://www.ipfire.org/blog/ipfire-2-17-core-update-91-released");

  script_tag(name:"summary", value:"IPFire is prone to multiple vulnerabilities.");

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

  script_tag(name:"insight", value:"The following vulnerabilities are fixed with IPFire 2.17 - Core
  Update 91:

  - OpenSSL security vulnerabilities: There are six security vulnerabilities that are fixed in
  version 1.0.2b of openssl. This version contained an ABI breakage bug that required us to wait
  for a fix for that and rebuild this Core Update.

  Among these are fixes for the Logjam vulnerability and others that are filed under CVE-2015-1788,
  CVE-2015-1789, CVE-2015-1790, CVE-2015-1792, CVE-2015-1791, and CVE-2014-8176.

  - StrongSwan IPsec security vulnerability: In strongSwan 5.3.1, a security vulnerability that is
  filed under CVE-2015-3991 was fixed. A denial-of-service and potential code execution was possible
  with specially crafted IKE messages.

  - IPFire ships now version 5.3.2 which fixes a second vulnerability (CVE-2015-4171).");

  script_tag(name:"affected", value:"IPFire versions prior to 2.17 - Core Update 91.");

  script_tag(name:"solution", value:"Update to version 2.17 - Core Update 91 or later.");

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

  exit(0);
}

include("version_func.inc");

if( ! rls = get_kb_item( "ipfire/system-release" ) )
  exit( 0 );

if( "IPFire" >!< rls )
  exit( 0 );

vers = eregmatch( pattern:'IPFire ([0-9.]+[^ ]*)', string:rls );
if( ! isnull( vers[1] ) )
  version = vers[1];

if( ! version )
  exit( 0 );

c = eregmatch( pattern:"core([0-9]+)", string:rls );
if( ! isnull( c[1] ) )
  core = c[1];
else
  core = 0;

chk_version = version + "." + core;

if( version_is_less( version:chk_version, test_version:"2.17.91" ) ) {
  report = report_fixed_ver( installed_version:version + " - Core Update" + core, fixed_version:"2.17 - Core Update 91" );
  security_message( port:0, data:report );
  exit( 0 );
}

exit( 99 );

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

17 Jul 2025 00:00Current
7.1High risk
Vulners AI Score7.1
CVSS 27.5
CVSS 39.8
EPSS0.74483
59