Lucene search
K

AIX Technology Level Out of Date

🗓️ 01 Sep 2004 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 49 Views

AIX operating system is outdated and may lack critical security patches requiring an update.

Refs
Code
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#

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

if (description)
{
 script_id(14611);
 script_version("1.37");
 script_set_attribute(attribute:"plugin_modification_date", value:"2026/04/23");

 script_name(english:"AIX Technology Level Out of Date");
 script_summary(english:"Check for outdated Technology Level");

 script_set_attribute(attribute:"synopsis", value:"The remote operating system is out of date.");
 script_set_attribute(attribute:"description", value:
"The remote AIX operating system is lagging behind its official
Technology Level (TL) and may therefore be missing critical security
patches.

NOTE: Findings may be affected by an extended support contract.");
 script_set_attribute(attribute:"see_also", value:"https://www-945.ibm.com/support/fixcentral/");
 script_set_attribute(attribute:"see_also", value:"https://www-304.ibm.com/support/docview.wss?uid=isg3T1012517");
 script_set_attribute(attribute:"solution", value:"Update to a current AIX Technology Level.");
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C");
 script_set_cvss3_base_vector("CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H");
 script_set_attribute(attribute:"cvss_score_source", value:"manual");
 script_set_attribute(attribute:"cvss_score_rationale", value:"Default unsupported software score.");

 script_set_attribute(attribute:"plugin_publication_date", value:"2004/09/01");

 script_set_attribute(attribute:"plugin_type", value:"local");
 script_end_attributes();

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

 script_dependencies("ssh_get_info.nasl");
 script_require_keys("Host/AIX/oslevel");

 exit(0);
}

include("global_settings.inc");

# nb: See <https://www-304.ibm.com/support/docview.wss?uid=isg3T1012517> for
#     info about TLs for which fixes are available.
aix_tl = make_array();      aix_tl_min = make_array();
aix_tl[7300] = 4;           aix_tl_min[7300] = 2;
aix_tl[7200] = 5;           aix_tl_min[7200] = 5;


aix_ver = make_array();
aix_ver[7300] = "7.3";
aix_ver[7200] = "7.2";
aix_ver[7100] = "7.1";
aix_ver[6100] = "6.1";
aix_ver[5300] = "5.3";
aix_ver[5200] = "5.2";
aix_ver[5100] = "5.1";


buf = get_kb_item("Host/AIX/oslevel");
if (!buf) exit(0, "The 'Host/AIX/oslevel' KB item is missing.");

v = split(buf, sep:"-",keep: 0);
if (empty_or_null(v) || empty_or_null(v[1])) exit(0, "Unable to determine AIX version.");

osversion = int(v[0]);
level = int(chomp(v[1]));

if (aix_ver[osversion]) aix = aix_ver[osversion];
else aix = osversion;

if (!isnull(aix_tl[osversion]))
{
  if (level < aix_tl_min[osversion])
  {
    report =
      '\n  AIX version                 : ' + aix +
      '\n  Installed Technology Level  : ' + level;

    if (aix_tl_min[osversion] < aix_tl[osversion])
      report +=
       '\n  Supported Technology Levels : ' + aix_tl_min[osversion] + ' - ' + aix_tl[osversion] + '\n';
    else
      report +=
        '\n  Supported Technology Level  : ' + aix_tl[osversion] + '\n';
    security_report_v4(port:0, extra:report, severity:SECURITY_HOLE);
    exit(0);
  }
  else exit(0, "This host is running a supported TL of AIX "+aix+" which is TL "+level+".");
}
else exit(0, "Nessus does not have any info about currently supported Technology Levels for AIX "+aix+".");

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

23 Apr 2026 00:00Current
5.7Medium risk
Vulners AI Score5.7
49