ID HPUX_PHSS_32182.NASL Type nessus Reporter This script is Copyright (C) 2005-2021 Tenable Network Security, Inc. Modified 2021-01-11T00:00:00
Description
s700_800 11.04 Virtualvault 4.7 OWS update :
Two security vulnerabilities have been reported in Apache HTTP server (http://httpd.apache.org/) versions prior to Apache 1.3.33 that may allow a Denial of Service (DoS) attack and execution of arbitrarty code.
#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#
# The descriptive text and patch checks in this plugin were
# extracted from HP patch PHSS_32182. The text itself is
# copyright (C) Hewlett-Packard Development Company, L.P.
#
include('deprecated_nasl_level.inc');
include('compat.inc');
if (description)
{
script_id(17561);
script_version("1.19");
script_set_attribute(attribute:"plugin_modification_date", value:"2021/01/11");
script_bugtraq_id(10508);
script_xref(name:"HP", value:"HPSBUX01113");
script_name(english:"HP-UX PHSS_32182 : s700_800 11.04 Virtualvault 4.7 OWS update");
script_summary(english:"Checks for the patch in the swlist output");
script_set_attribute(
attribute:"synopsis",
value:"The remote HP-UX host is missing a security-related patch."
);
script_set_attribute(
attribute:"description",
value:
"s700_800 11.04 Virtualvault 4.7 OWS update :
Two security vulnerabilities have been reported in Apache HTTP server
(http://httpd.apache.org/) versions prior to Apache 1.3.33 that may
allow a Denial of Service (DoS) attack and execution of arbitrarty
code."
);
script_set_attribute(
attribute:"solution",
value:"Install patch PHSS_32182 or subsequent."
);
script_set_attribute(attribute:"risk_factor", value:"High");
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:"plugin_type", value:"local");
script_set_attribute(attribute:"cpe", value:"cpe:/o:hp:hp-ux");
script_set_attribute(attribute:"patch_publication_date", value:"2004/11/16");
script_set_attribute(attribute:"plugin_publication_date", value:"2005/03/18");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_copyright(english:"This script is Copyright (C) 2005-2021 Tenable Network Security, Inc.");
script_family(english:"HP-UX Local Security Checks");
script_dependencies("ssh_get_info.nasl");
script_require_keys("Host/local_checks_enabled", "Host/HP-UX/version", "Host/HP-UX/swlist");
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("hpux.inc");
if (!get_kb_item("Host/local_checks_enabled")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);
if (!get_kb_item("Host/HP-UX/version")) audit(AUDIT_OS_NOT, "HP-UX");
if (!get_kb_item("Host/HP-UX/swlist")) audit(AUDIT_PACKAGE_LIST_MISSING);
if (!hpux_check_ctx(ctx:"11.04"))
{
exit(0, "The host is not affected since PHSS_32182 applies to a different OS release.");
}
patches = make_list("PHSS_32182", "PHSS_33398", "PHSS_34121", "PHSS_35109", "PHSS_35463", "PHSS_35558");
foreach patch (patches)
{
if (hpux_installed(app:patch))
{
exit(0, "The host is not affected because patch "+patch+" is installed.");
}
}
flag = 0;
if (hpux_check_patch(app:"VaultWS.WS-CORE", version:"A.04.70")) flag++;
if (flag)
{
if (report_verbosity > 0) security_hole(port:0, extra:hpux_report_get());
else security_hole(0);
exit(0);
}
else audit(AUDIT_HOST_NOT, "affected");
{"id": "HPUX_PHSS_32182.NASL", "type": "nessus", "bulletinFamily": "scanner", "title": "HP-UX PHSS_32182 : s700_800 11.04 Virtualvault 4.7 OWS update", "description": "s700_800 11.04 Virtualvault 4.7 OWS update : \n\nTwo security vulnerabilities have been reported in Apache HTTP server (http://httpd.apache.org/) versions prior to Apache 1.3.33 that may allow a Denial of Service (DoS) attack and execution of arbitrarty code.", "published": "2005-03-18T00:00:00", "modified": "2021-01-11T00:00:00", "cvss": {"score": null, "vector": null}, "cvss2": {}, "cvss3": {"score": null, "vector": null}, "href": "https://www.tenable.com/plugins/nessus/17561", "reporter": "This script is Copyright (C) 2005-2021 Tenable Network Security, Inc.", "references": [], "cvelist": [], "immutableFields": [], "lastseen": "2021-08-19T13:17:41", "viewCount": 1, "enchantments": {"dependencies": {}, "score": {"value": 0.5, "vector": "NONE"}, "backreferences": {}, "exploitation": null, "vulnersScore": 0.5}, "pluginID": "17561", "sourceData": "#%NASL_MIN_LEVEL 70300\n#\n# (C) Tenable Network Security, Inc.\n#\n# The descriptive text and patch checks in this plugin were \n# extracted from HP patch PHSS_32182. The text itself is\n# copyright (C) Hewlett-Packard Development Company, L.P.\n#\n\ninclude('deprecated_nasl_level.inc');\ninclude('compat.inc');\n\nif (description)\n{\n script_id(17561);\n script_version(\"1.19\");\n script_set_attribute(attribute:\"plugin_modification_date\", value:\"2021/01/11\");\n\n script_bugtraq_id(10508);\n script_xref(name:\"HP\", value:\"HPSBUX01113\");\n\n script_name(english:\"HP-UX PHSS_32182 : s700_800 11.04 Virtualvault 4.7 OWS update\");\n script_summary(english:\"Checks for the patch in the swlist output\");\n\n script_set_attribute(\n attribute:\"synopsis\", \n value:\"The remote HP-UX host is missing a security-related patch.\"\n );\n script_set_attribute(\n attribute:\"description\", \n value:\n\"s700_800 11.04 Virtualvault 4.7 OWS update : \n\nTwo security vulnerabilities have been reported in Apache HTTP server\n(http://httpd.apache.org/) versions prior to Apache 1.3.33 that may\nallow a Denial of Service (DoS) attack and execution of arbitrarty\ncode.\"\n );\n script_set_attribute(\n attribute:\"solution\", \n value:\"Install patch PHSS_32182 or subsequent.\"\n );\n script_set_attribute(attribute:\"risk_factor\", value:\"High\");\n script_set_cvss_temporal_vector(\"CVSS2#E:F/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"Exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"true\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"local\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/o:hp:hp-ux\");\n\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2004/11/16\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2005/03/18\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_copyright(english:\"This script is Copyright (C) 2005-2021 Tenable Network Security, Inc.\");\n script_family(english:\"HP-UX Local Security Checks\");\n\n script_dependencies(\"ssh_get_info.nasl\");\n script_require_keys(\"Host/local_checks_enabled\", \"Host/HP-UX/version\", \"Host/HP-UX/swlist\");\n\n exit(0);\n}\n\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"hpux.inc\");\n\n\nif (!get_kb_item(\"Host/local_checks_enabled\")) audit(AUDIT_LOCAL_CHECKS_NOT_ENABLED);\nif (!get_kb_item(\"Host/HP-UX/version\")) audit(AUDIT_OS_NOT, \"HP-UX\");\nif (!get_kb_item(\"Host/HP-UX/swlist\")) audit(AUDIT_PACKAGE_LIST_MISSING);\n\nif (!hpux_check_ctx(ctx:\"11.04\"))\n{\n exit(0, \"The host is not affected since PHSS_32182 applies to a different OS release.\");\n}\n\npatches = make_list(\"PHSS_32182\", \"PHSS_33398\", \"PHSS_34121\", \"PHSS_35109\", \"PHSS_35463\", \"PHSS_35558\");\nforeach patch (patches)\n{\n if (hpux_installed(app:patch))\n {\n exit(0, \"The host is not affected because patch \"+patch+\" is installed.\");\n }\n}\n\n\nflag = 0;\nif (hpux_check_patch(app:\"VaultWS.WS-CORE\", version:\"A.04.70\")) flag++;\n\n\nif (flag)\n{\n if (report_verbosity > 0) security_hole(port:0, extra:hpux_report_get());\n else security_hole(0);\n exit(0);\n}\nelse audit(AUDIT_HOST_NOT, \"affected\");\n", "naslFamily": "HP-UX Local Security Checks", "cpe": ["cpe:/o:hp:hp-ux"], "solution": "Install patch PHSS_32182 or subsequent.", "nessusSeverity": "High", "cvssScoreSource": "", "vpr": {}, "exploitAvailable": true, "exploitEase": "Exploits are available", "patchPublicationDate": "2004-11-16T00:00:00", "vulnerabilityPublicationDate": null, "exploitableWith": [], "_state": {"dependencies": 1645273143}}