ID AIX_U809832.NASL
Type nessus
Reporter Tenable
Modified 2013-03-14T00:00:00
Description
The remote host is missing AIX PTF U809832, which is related to the security of the package infocenter.man.EN_US.commands.
#
# (C) Tenable Network Security, Inc.
#
# The descriptive text and package checks in this plugin were extracted
# from AIX Security PTF U809832. The text itself is copyright (C)
# International Business Machines Corp.
#
include("compat.inc");
if (description)
{
script_id(28792);
script_version ("$Revision: 1.5 $");
script_cvs_date("$Date: 2013/03/14 01:05:24 $");
script_name(english:"AIX 5.3 TL 5 : infocenter.man.EN_US.commands (U809832)");
script_summary(english:"Check for PTF U809832");
script_set_attribute(
attribute:"synopsis",
value:"The remote AIX host is missing a vendor-supplied security patch."
);
script_set_attribute(
attribute:"description",
value:
"The remote host is missing AIX PTF U809832, which is related to the
security of the package infocenter.man.EN_US.commands."
);
script_set_attribute(
attribute:"see_also",
value:"http://www-01.ibm.com/support/docview.wss?uid=isg1IY89500"
);
script_set_attribute(
attribute:"solution",
value:"Install the appropriate missing security-related fix."
);
script_set_attribute(attribute:"risk_factor", value:"High");
script_set_attribute(attribute:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/o:ibm:aix:5.3");
script_set_attribute(attribute:"vuln_publication_date", value:"2006/09/14");
script_set_attribute(attribute:"patch_publication_date", value:"2006/09/14");
script_set_attribute(attribute:"plugin_publication_date", value:"2007/12/03");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_copyright(english:"This script is Copyright (C) 2007-2013 Tenable Network Security, Inc.");
script_family(english:"AIX Local Security Checks");
script_dependencies("ssh_get_info.nasl");
script_require_keys("Host/local_checks_enabled", "Host/AIX/oslevel", "Host/AIX/version", "Host/AIX/lslpp");
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("aix.inc");
if ( ! get_kb_item("Host/local_checks_enabled") ) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
if ( ! get_kb_item("Host/AIX/version") ) audit(AUDIT_OS_NOT, "AIX");
if ( ! get_kb_item("Host/AIX/lslpp") ) audit(AUDIT_PACKAGE_LIST_MISSING);
flag = 0;
if ( aix_check_patch(ml:"530005", patch:"U809832", package:"infocenter.man.EN_US.commands.5.3.0.52") < 0 ) flag++;
if (flag)
{
if (report_verbosity > 0) security_hole(port:0, extra:aix_report_get());
else security_hole(0);
exit(0);
}
else audit(AUDIT_HOST_NOT, "affected");
{"id": "AIX_U809832.NASL", "bulletinFamily": "scanner", "title": "AIX 5.3 TL 5 : infocenter.man.EN_US.commands (U809832)", "description": "The remote host is missing AIX PTF U809832, which is related to the security of the package infocenter.man.EN_US.commands.", "published": "2007-12-03T00:00:00", "modified": "2013-03-14T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "https://www.tenable.com/plugins/index.php?view=single&id=28792", "reporter": "Tenable", "references": ["http://www-01.ibm.com/support/docview.wss?uid=isg1IY89500"], "cvelist": [], "type": "nessus", "lastseen": "2017-10-29T13:37:17", "history": [{"bulletin": {"bulletinFamily": "scanner", "cpe": [], "cvelist": [], "cvss": {"score": 0.0, "vector": "NONE"}, "description": "The remote host is missing AIX PTF U809832, which is related to the security of the package infocenter.man.EN_US.commands.", "edition": 1, "enchantments": {}, "hash": "baa9783dc07579b915ff3a79305a578553e9b56aa5a8d7e3ea6671d8ad00a427", "hashmap": [{"hash": "38b5ea2127b99ebdd541f2bf3ee26675", "key": "description"}, {"hash": "d9ac6943888c76ca22ea7bddefd337fb", "key": "modified"}, {"hash": "467cd515a918801b3eada0a412f9a1a0", "key": "references"}, {"hash": "9cf00d658b687f030ebe173a0528c567", "key": "reporter"}, {"hash": "6431422b360f2e9e816cd12654a2bdc3", "key": "pluginID"}, {"hash": "7820cb64f59e45c3f6048123b7d195ec", "key": "title"}, {"hash": "f9df7018ed299fc8f8b4f933fd10ee43", "key": "href"}, {"hash": "d41d8cd98f00b204e9800998ecf8427e", "key": "cvelist"}, {"hash": "9aedd4dcccf909d4912a2f8113cffa43", "key": "naslFamily"}, {"hash": "8cd4821cb504d25572038ed182587d85", "key": "cvss"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "eeaeeaa19437cc3c746d0ad40e7a334e", "key": "sourceData"}, {"hash": "d41d8cd98f00b204e9800998ecf8427e", "key": "cpe"}, {"hash": "ebef0da5733dce975a1369dd478bcf6e", "key": "published"}], "history": [], "href": "https://www.tenable.com/plugins/index.php?view=single&id=28792", "id": "AIX_U809832.NASL", "lastseen": "2016-09-26T17:24:20", "modified": "2013-03-14T00:00:00", "naslFamily": "AIX Local Security Checks", "objectVersion": "1.2", "pluginID": "28792", "published": "2007-12-03T00:00:00", "references": ["http://www-01.ibm.com/support/docview.wss?uid=isg1IY89500"], "reporter": "Tenable", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were extracted\n# from AIX Security PTF U809832. The text itself is copyright (C)\n# International Business Machines Corp.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(28792);\n script_version (\"$Revision: 1.5 $\");\n script_cvs_date(\"$Date: 2013/03/14 01:05:24 $\");\n\n script_name(english:\"AIX 5.3 TL 5 : infocenter.man.EN_US.commands (U809832)\");\n script_summary(english:\"Check for PTF U809832\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote AIX host is missing a vendor-supplied security patch.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"The remote host is missing AIX PTF U809832, which is related to the\nsecurity of the package infocenter.man.EN_US.commands.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"http://www-01.ibm.com/support/docview.wss?uid=isg1IY89500\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\"Install the appropriate missing security-related fix.\"\n );\n script_set_attribute(attribute:\"risk_factor\", value:\"High\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:ibm:aix:5.3\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2006/09/14\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2006/09/14\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2007/12/03\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2007-2013 Tenable Network Security, Inc.\");\n script_family(english:\"AIX Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/AIX/oslevel\", \"Host/AIX/version\", \"Host/AIX/lslpp\");\n\n exit(0);\n}\n\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"aix.inc\");\n\nif ( ! get_kb_item(\"Host/local_checks_enabled\") ) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nif ( ! get_kb_item(\"Host/AIX/version\") ) audit(AUDIT_OS_NOT, \"AIX\");\nif ( ! get_kb_item(\"Host/AIX/lslpp\") ) audit(AUDIT_PACKAGE_LIST_MISSING);\n\nflag = 0;\n\nif ( aix_check_patch(ml:\"530005\", patch:\"U809832\", package:\"infocenter.man.EN_US.commands.5.3.0.52\") < 0 ) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:aix_report_get());\n else security_hole(0);\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, \"affected\");\n", "title": "AIX 5.3 TL 5 : infocenter.man.EN_US.commands (U809832)", "type": "nessus", "viewCount": 0}, "differentElements": ["cpe"], "edition": 1, "lastseen": "2016-09-26T17:24:20"}], "edition": 2, "hashmap": [{"key": "bulletinFamily", "hash": "bbdaea376f500d25f6b0c1050311dd07"}, {"key": "cpe", "hash": "6e64cf8d131277d1ab63888fe1ea8cc2"}, {"key": "cvelist", "hash": "d41d8cd98f00b204e9800998ecf8427e"}, {"key": "cvss", "hash": "8cd4821cb504d25572038ed182587d85"}, {"key": "description", "hash": "38b5ea2127b99ebdd541f2bf3ee26675"}, {"key": "href", "hash": "f9df7018ed299fc8f8b4f933fd10ee43"}, {"key": "modified", "hash": "d9ac6943888c76ca22ea7bddefd337fb"}, {"key": "naslFamily", "hash": "9aedd4dcccf909d4912a2f8113cffa43"}, {"key": "pluginID", "hash": "6431422b360f2e9e816cd12654a2bdc3"}, {"key": "published", "hash": "ebef0da5733dce975a1369dd478bcf6e"}, {"key": "references", "hash": "467cd515a918801b3eada0a412f9a1a0"}, {"key": "reporter", "hash": "9cf00d658b687f030ebe173a0528c567"}, {"key": "sourceData", "hash": "eeaeeaa19437cc3c746d0ad40e7a334e"}, {"key": "title", "hash": "7820cb64f59e45c3f6048123b7d195ec"}, {"key": "type", "hash": "5e0bd03bec244039678f2b955a2595aa"}], "hash": "019770deae0bb95a0de9ecb133f699e4ea03201189cce13ef753c3dc12dcdfb6", "viewCount": 0, "enchantments": {"vulnersScore": 5.4}, "objectVersion": "1.3", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and package checks in this plugin were extracted\n# from AIX Security PTF U809832. The text itself is copyright (C)\n# International Business Machines Corp.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(28792);\n script_version (\"$Revision: 1.5 $\");\n script_cvs_date(\"$Date: 2013/03/14 01:05:24 $\");\n\n script_name(english:\"AIX 5.3 TL 5 : infocenter.man.EN_US.commands (U809832)\");\n script_summary(english:\"Check for PTF U809832\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote AIX host is missing a vendor-supplied security patch.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"The remote host is missing AIX PTF U809832, which is related to the\nsecurity of the package infocenter.man.EN_US.commands.\"\n );\n script_set_attribute(\n attribute:\"see_also\",\n value:\"http://www-01.ibm.com/support/docview.wss?uid=isg1IY89500\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\"Install the appropriate missing security-related fix.\"\n );\n script_set_attribute(attribute:\"risk_factor\", value:\"High\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:ibm:aix:5.3\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2006/09/14\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2006/09/14\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2007/12/03\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2007-2013 Tenable Network Security, Inc.\");\n script_family(english:\"AIX Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/AIX/oslevel\", \"Host/AIX/version\", \"Host/AIX/lslpp\");\n\n exit(0);\n}\n\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"aix.inc\");\n\nif ( ! get_kb_item(\"Host/local_checks_enabled\") ) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nif ( ! get_kb_item(\"Host/AIX/version\") ) audit(AUDIT_OS_NOT, \"AIX\");\nif ( ! get_kb_item(\"Host/AIX/lslpp\") ) audit(AUDIT_PACKAGE_LIST_MISSING);\n\nflag = 0;\n\nif ( aix_check_patch(ml:\"530005\", patch:\"U809832\", package:\"infocenter.man.EN_US.commands.5.3.0.52\") < 0 ) flag++;\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:aix_report_get());\n else security_hole(0);\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, \"affected\");\n", "naslFamily": "AIX Local Security Checks", "pluginID": "28792", "cpe": ["cpe:/o:ibm:aix:5.3"]}
{"result": {}}