HP Network Automation Remote Unauthorized Access (HPSBMU02738)
2013-09-24T00:00:00
ID HP_NA_HPSBMU02738.NASL Type nessus Reporter This script is Copyright (C) 2013-2018 Tenable Network Security, Inc. Modified 2021-02-02T00:00:00
Description
The HP Network Automation server has a remote unauthorized access
vulnerability.
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(70101);
script_version("1.7");
script_cvs_date("Date: 2018/11/15 20:50:23");
script_cve_id("CVE-2011-4790");
script_bugtraq_id(51746);
script_name(english:"HP Network Automation Remote Unauthorized Access (HPSBMU02738)");
script_summary(english:"Checks reported version");
script_set_attribute(attribute:"synopsis", value:
"The remote application has a remote unauthorized access
vulnerability.");
script_set_attribute(attribute:"description", value:
"The HP Network Automation server has a remote unauthorized access
vulnerability.");
# https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-c03171149
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?54882a4a");
script_set_attribute(attribute:"solution", value:"Upgrade to version 9.10.02 or later.");
script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C");
script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
script_set_attribute(attribute:"exploitability_ease", value:"No known exploits are available");
script_set_attribute(attribute:"exploit_available", value:"false");
script_set_attribute(attribute:"vuln_publication_date", value:"2012/01/30");
script_set_attribute(attribute:"patch_publication_date", value:"2012/01/30");
script_set_attribute(attribute:"plugin_publication_date", value:"2013/09/24");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:hp:network_automation");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Misc.");
script_copyright(english:"This script is Copyright (C) 2013-2018 Tenable Network Security, Inc.");
script_dependencies("hp_na_detect.nasl");
script_require_ports("Services/www", 443);
script_require_keys("www/hp_network_automation");
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");
include("webapp_func.inc");
get_kb_item_or_exit("www/hp_network_automation");
port = get_http_port(default:443);
install = get_install_from_kb(appname:"hp_network_automation", port:port, exit_on_fail:TRUE);
ver = install['ver'];
url = build_url(qs:install['dir'], port:port);
if (
ver == UNKNOWN_VER ||
ver !~ "^[0-9]+(?:[0-9\.])+$"
) audit(AUDIT_UNKNOWN_WEB_APP_VER, 'HP Network Automation', url);
# Check specific versions listed in advisory.
if (
# 9.10 less than 9.10.02
(
ver_compare(ver:ver, fix:'9.10.02', strict:FALSE) == -1 &&
ver_compare(ver:ver, fix:'9.10', strict:FALSE) != -1
) ||
# Any 9.0
(
ver_compare(ver:ver, fix:'9.1', strict:FALSE) == -1 &&
ver_compare(ver:ver, fix:'9.0', strict:FALSE) != -1
) ||
# Any 7.5x or 7.6x
(
ver_compare(ver:ver, fix:'7.70', strict:FALSE) == -1 &&
ver_compare(ver:ver, fix:'7.50', strict:FALSE) != -1
)
)
{
if (report_verbosity > 0)
{
report = '\n Installed version : ' + ver +
'\n Fixed version : 9.10.02' +
'\n';
security_hole(port:port, extra:report);
}
else security_hole(port);
}
else audit(AUDIT_WEB_APP_NOT_AFFECTED, "HP Network Automation", url, ver);
{"id": "HP_NA_HPSBMU02738.NASL", "bulletinFamily": "scanner", "title": "HP Network Automation Remote Unauthorized Access (HPSBMU02738)", "description": "The HP Network Automation server has a remote unauthorized access\nvulnerability.", "published": "2013-09-24T00:00:00", "modified": "2021-02-02T00:00:00", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}, "href": "https://www.tenable.com/plugins/nessus/70101", "reporter": "This script is Copyright (C) 2013-2018 Tenable Network Security, Inc.", "references": ["http://www.nessus.org/u?54882a4a"], "cvelist": ["CVE-2011-4790"], "type": "nessus", "lastseen": "2021-02-01T03:29:49", "edition": 26, "viewCount": 3, "enchantments": {"dependencies": {"references": [{"type": "cve", "idList": ["CVE-2011-4790"]}, {"type": "securityvulns", "idList": ["SECURITYVULNS:VULN:12196", "SECURITYVULNS:DOC:27675"]}], "modified": "2021-02-01T03:29:49", "rev": 2}, "score": {"value": 7.2, "vector": "NONE", "modified": "2021-02-01T03:29:49", "rev": 2}, "vulnersScore": 7.2}, "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(70101);\n script_version(\"1.7\");\n script_cvs_date(\"Date: 2018/11/15 20:50:23\");\n\n script_cve_id(\"CVE-2011-4790\");\n script_bugtraq_id(51746);\n\n script_name(english:\"HP Network Automation Remote Unauthorized Access (HPSBMU02738)\");\n script_summary(english:\"Checks reported version\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"The remote application has a remote unauthorized access\nvulnerability.\");\n script_set_attribute(attribute:\"description\", value:\n\"The HP Network Automation server has a remote unauthorized access\nvulnerability.\");\n # https://support.hpe.com/hpsc/doc/public/display?docId=emr_na-c03171149\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?54882a4a\");\n script_set_attribute(attribute:\"solution\", value:\"Upgrade to version 9.10.02 or later.\");\n script_set_cvss_base_vector(\"CVSS2#AV:N/AC:M/Au:N/C:C/I:C/A:C\");\n script_set_cvss_temporal_vector(\"CVSS2#E:U/RL:OF/RC:C\");\n script_set_attribute(attribute:\"exploitability_ease\", value:\"No known exploits are available\");\n script_set_attribute(attribute:\"exploit_available\", value:\"false\");\n\n script_set_attribute(attribute:\"vuln_publication_date\", value:\"2012/01/30\");\n script_set_attribute(attribute:\"patch_publication_date\", value:\"2012/01/30\");\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2013/09/24\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"remote\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:hp:network_automation\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"Misc.\");\n\n script_copyright(english:\"This script is Copyright (C) 2013-2018 Tenable Network Security, Inc.\");\n\n script_dependencies(\"hp_na_detect.nasl\");\n script_require_ports(\"Services/www\", 443);\n script_require_keys(\"www/hp_network_automation\");\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"http.inc\");\ninclude(\"webapp_func.inc\");\n\nget_kb_item_or_exit(\"www/hp_network_automation\");\n\nport = get_http_port(default:443);\ninstall = get_install_from_kb(appname:\"hp_network_automation\", port:port, exit_on_fail:TRUE);\nver = install['ver'];\nurl = build_url(qs:install['dir'], port:port);\n\nif (\n ver == UNKNOWN_VER || \n ver !~ \"^[0-9]+(?:[0-9\\.])+$\"\n) audit(AUDIT_UNKNOWN_WEB_APP_VER, 'HP Network Automation', url);\n\n\n# Check specific versions listed in advisory.\nif (\n # 9.10 less than 9.10.02\n (\n ver_compare(ver:ver, fix:'9.10.02', strict:FALSE) == -1 &&\n ver_compare(ver:ver, fix:'9.10', strict:FALSE) != -1\n ) ||\n # Any 9.0\n (\n ver_compare(ver:ver, fix:'9.1', strict:FALSE) == -1 &&\n ver_compare(ver:ver, fix:'9.0', strict:FALSE) != -1\n ) ||\n # Any 7.5x or 7.6x\n (\n ver_compare(ver:ver, fix:'7.70', strict:FALSE) == -1 &&\n ver_compare(ver:ver, fix:'7.50', strict:FALSE) != -1\n )\n)\n{\n if (report_verbosity > 0)\n {\n report = '\\n Installed version : ' + ver + \n '\\n Fixed version : 9.10.02' +\n '\\n';\n security_hole(port:port, extra:report);\n }\n else security_hole(port);\n}\nelse audit(AUDIT_WEB_APP_NOT_AFFECTED, \"HP Network Automation\", url, ver);\n", "naslFamily": "Misc.", "pluginID": "70101", "cpe": ["cpe:/a:hp:network_automation"], "scheme": null}
{"cve": [{"lastseen": "2021-02-02T05:51:09", "description": "Unspecified vulnerability in HP Network Automation 7.5x, 7.6x, 9.0, and 9.10 allows remote attackers to execute arbitrary code via unknown vectors.\nPer: http://h20565.www2.hp.com/portal/site/hpsc/public/kb/docDisplay/?docId=emr_na-c03171149&ac.admitted=1328201924080.876444892.492883150\r\n\r\n'RESOLUTION\r\n\r\nHP has provided a patch to resolve the vulnerability for HP Network Automation v9.10. The patch is available here: http://support.openview.hp.com/selfsolve/patches\r\n\r\n 1. Upgrade to HP Network Automation v9.10\r\n 2. Apply patch 2 or subsequent (Network Automation 09.10.02, NA_00015)'", "edition": 5, "cvss3": {}, "published": "2012-02-02T00:55:00", "title": "CVE-2011-4790", "type": "cve", "cwe": ["NVD-CWE-noinfo"], "bulletinFamily": "NVD", "cvss2": {"severity": "HIGH", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": false, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 9.3, "vectorString": "AV:N/AC:M/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "obtainUserPrivilege": false}, "cvelist": ["CVE-2011-4790"], "modified": "2019-10-09T23:03:00", "cpe": ["cpe:/a:hp:network_automation:7.5", "cpe:/a:hp:network_automation:9.10", "cpe:/a:hp:network_automation:7.6", "cpe:/a:hp:network_automation:9.0"], "id": "CVE-2011-4790", "href": "https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-4790", "cvss": {"score": 9.3, "vector": "AV:N/AC:M/Au:N/C:C/I:C/A:C"}, "cpe23": ["cpe:2.3:a:hp:network_automation:9.10:*:*:*:*:*:*:*", "cpe:2.3:a:hp:network_automation:9.0:*:*:*:*:*:*:*", "cpe:2.3:a:hp:network_automation:7.5:*:*:*:*:*:*:*", "cpe:2.3:a:hp:network_automation:7.6:*:*:*:*:*:*:*"]}], "securityvulns": [{"lastseen": "2018-08-31T11:10:43", "bulletinFamily": "software", "cvelist": ["CVE-2011-4790"], "description": "-----BEGIN PGP SIGNED MESSAGE-----\r\nHash: SHA1\r\n\r\nSUPPORT COMMUNICATION - SECURITY BULLETIN\r\n\r\nDocument ID: c03171149Version: 1\r\nHPSBMU02738 SSRT100748 rev.1 - HP Network Automation Running on Linux, Solaris, and Windows, Remote Unauthorized Access\r\n\r\nNOTICE: The information in this Security Bulletin should be acted upon as soon as possible.\r\n\r\nRelease Date: 2012-01-30Last Updated: 2012-01-30\r\n________________________________________\r\nPotential Security Impact: Remote unauthorized access\r\nSource: Hewlett-Packard Company, HP Software Security Response Team\r\nVULNERABILITY SUMMARY\r\nA potential security vulnerability has been identified with HP Network Automation running on Linux, Solaris, and Windows. The vulnerability could be exploited remotely to gain unauthorized access.\r\nReferences: CVE-2011-4790\r\nSUPPORTED SOFTWARE VERSIONS*: ONLY impacted versions are listed.\r\nHP Network Automation v7.5x, v7.6x, v9.0, v9.10\r\nBACKGROUND\r\n\r\nCVSS 2.0 Base Metrics\r\nCVSS 2.0 Base Metrics\r\n===========================================================\r\n Reference Base Vector Base Score\r\nCVE-2011-4790 (AV:N/AC:M/Au:N/C:C/I:C/A:C) 9.3\r\n===========================================================\r\n Information on CVSS is documented\r\n in HP Customer Notice: HPSN-2008-002\r\n\r\nRESOLUTION\r\n\r\nHP has provided a patch to resolve the vulnerability for HP Network Automation v9.10. The patch is available here: http://support.openview.hp.com/selfsolve/patches\r\n1. Upgrade to HP Network Automation v9.10\r\n2. Apply patch 2 or subsequent (Network Automation 09.10.02, NA_00015)\r\nHISTORY\r\nVersion:1 (rev.1) - 30 January 2012 Initial Release\r\nThird Party Security Patches: Third party security patches that are to be installed on systems running HP software products should be applied in accordance with the customer's patch management policy.\r\n\r\nSupport: For issues about implementing the recommendations of this Security Bulletin, contact normal HP Services support channel. For other issues about the content of this Security Bulletin, send e-mail to security-alert@hp.com.\r\n\r\nReport: To report a potential security vulnerability with any HP supported product, send Email to: security-alert@hp.com\r\n\r\nSubscribe: To initiate a subscription to receive future HP Security Bulletin alerts via Email: http://h41183.www4.hp.com/signup_alerts.php?jumpid=hpsc_secbulletins\r\n\r\nSecurity Bulletin List: A list of HP Security Bulletins, updated periodically, is contained in HP Security Notice HPSN-2011-001: https://h20566.www2.hp.com/portal/site/hpsc/public/kb/docDisplay/?docId=emr_na-c02964430\r\n\r\nSecurity Bulletin Archive: A list of recently released Security Bulletins is available here: http://h20566.www2.hp.com/portal/site/hpsc/public/kb/secBullArchive/\r\n\r\nSoftware Product Category: The Software Product Category is represented in the title by the two characters following HPSB.\r\n\r\n3C = 3COM\r\n3P = 3rd Party Software\r\nGN = HP General Software\r\nHF = HP Hardware and Firmware\r\nMP = MPE/iX\r\nMU = Multi-Platform Software\r\nNS = NonStop Servers\r\nOV = OpenVMS\r\nPI = Printing and Imaging\r\nPV = ProCurve\r\nST = Storage Software\r\nTU = Tru64 UNIX\r\nUX = HP-UX\r\n\r\nCopyright 2012 Hewlett-Packard Development Company, L.P.\r\nHewlett-Packard Company shall not be liable for technical or editorial errors or omissions contained herein. The information provided is provided "as is" without warranty of any kind. To the extent permitted by law, neither HP or its affiliates, subcontractors or suppliers will be liable for incidental,special or consequential damages including downtime cost; lost profits;damages relating to the procurement of substitute products or services; or damages for loss of data, or software restoration. The information in this document is subject to change without notice. Hewlett-Packard Company and the names of Hewlett-Packard products referenced herein are trademarks of Hewlett-Packard Company in the United States and other countries. Other product and company names mentioned herein may be trademarks of their respective owners.\r\n-----BEGIN PGP SIGNATURE-----\r\nVersion: GnuPG v1.4.10 (GNU/Linux)\r\n\r\niEYEARECAAYFAk8nCGgACgkQ4B86/C0qfVlPxACgsMH5juKyYCBrEcdQvg5pegIv\r\nKlgAnikcp/UVeiF9+ihcbJVw9ph2GJoy\r\n=R+6J\r\n-----END PGP SIGNATURE-----\r\n", "edition": 1, "modified": "2012-02-15T00:00:00", "published": "2012-02-15T00:00:00", "id": "SECURITYVULNS:DOC:27675", "href": "https://vulners.com/securityvulns/SECURITYVULNS:DOC:27675", "title": "[security bulletin] HPSBMU02738 SSRT100748 rev.1 - HP Network Automation Running on Linux, Solaris, and Windows, Remote Unauthorized Access", "type": "securityvulns", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}, {"lastseen": "2018-08-31T11:09:46", "bulletinFamily": "software", "cvelist": ["CVE-2011-4790"], "description": "No description provided", "edition": 1, "modified": "2012-02-15T00:00:00", "published": "2012-02-15T00:00:00", "id": "SECURITYVULNS:VULN:12196", "href": "https://vulners.com/securityvulns/SECURITYVULNS:VULN:12196", "title": "HP Network Automation unauthorized access", "type": "securityvulns", "cvss": {"score": 9.3, "vector": "AV:NETWORK/AC:MEDIUM/Au:NONE/C:COMPLETE/I:COMPLETE/A:COMPLETE/"}}]}