ID HP_DATABASE_ARCHIVING_DETECT.NASL Type nessus Reporter This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof. Modified 2019-11-02T00:00:00
Description
HP Database Archiving Software, a web interface for managing database
archives, is running on the remote host.
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if (description)
{
script_id(62204);
script_version("1.2");
script_cvs_date("Date: 2019/11/25");
script_name(english:"HP Database Archiving Software Detection");
script_summary(english:"Looks for the login page.");
script_set_attribute(attribute:"synopsis", value:
"A database archiving software web console is running on the remote
host.");
script_set_attribute(attribute:"description", value:
"HP Database Archiving Software, a web interface for managing database
archives, is running on the remote host.");
# http://www8.hp.com/us/en/software-solutions/software.html?compURI=1175612#.UFI37q7F3X5
script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?9e8976b9");
script_set_attribute(attribute:"solution", value:"n/a");
script_set_attribute(attribute:"risk_factor", value:"None");
script_set_attribute(attribute:"plugin_publication_date", value:"2012/09/19");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:hp:database_archiving_software");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"CGI abuses");
script_copyright(english:"This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencies("http_version.nasl");
script_exclude_keys("Settings/disable_cgi_scanning");
script_require_ports("Services/www", 443, 8080);
exit(0);
}
include("audit.inc");
include("global_settings.inc");
include("http.inc");
include("misc_func.inc");
include("webapp_func.inc");
# Get the ports that web servers have been found on, defaulting to 8080
port = get_http_port(default:8080);
# Put together a list of directories we should check in.
dirs = make_list();
dirs[0] = '/WebConsole/login/auth';
# Put together checks for different pages that we can scrape version
# information from.
checks = make_array();
regexes = make_list();
regexes[0] = make_list(
'<title>HP Database Archiving - Login</title>'
);
regexes[1] = make_list(
"<a href=./WebConsole/help/about.*>(\d+.\d+.\d+)</a>"
);
checks["/"] = regexes;
# Find where the web interface is installed.
installs = find_install(appname:"hp_database_archiving_software", checks:checks, dirs:dirs, port:port);
if (isnull(installs)) audit(AUDIT_NOT_DETECT, "HP Database Archiving Software", port);
# Report our findings.
report = NULL;
if (report_verbosity > 0)
{
report = get_install_report(
display_name : "HP Database Archiving Software",
installs : installs,
port : port
);
}
security_note(port:port, extra:report);
{"id": "HP_DATABASE_ARCHIVING_DETECT.NASL", "bulletinFamily": "scanner", "title": "HP Database Archiving Software Detection", "description": "HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.", "published": "2012-09-19T00:00:00", "modified": "2019-11-02T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "https://www.tenable.com/plugins/nessus/62204", "reporter": "This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof.", "references": ["http://www.nessus.org/u?9e8976b9"], "cvelist": [], "type": "nessus", "lastseen": "2019-11-26T11:13:39", "history": [{"bulletin": {"bulletinFamily": "scanner", "cpe": ["cpe:/a:hp:database_archiving_software"], "cvelist": [], "cvss": {"score": 0.0, "vector": "NONE"}, "description": "HP Database Archiving Software, a web interface for managing database archives, is running on the remote host.", "edition": 4, "enchantments": {"dependencies": {"modified": "2019-02-21T01:17:40", "references": []}, "score": {"modified": "2019-02-21T01:17:40", "value": 0.0, "vector": "NONE"}}, "hash": "26e31f43c48e164fa7a576720e3070fadb3cef181017b22490bf346ed2a178b1", "hashmap": [{"hash": "bcfe5b16c2e070945b28805edc5c3900", "key": "sourceData"}, {"hash": "13437d6c8405afb6bba15fdc192a9d18", "key": "title"}, {"hash": "9cf00d658b687f030ebe173a0528c567", "key": "reporter"}, {"hash": "b166fa6a994ab7c2642d4c6319628a1d", "key": "cpe"}, {"hash": "d41d8cd98f00b204e9800998ecf8427e", "key": "cvelist"}, {"hash": "09cf0cd9cabda38239d27cb301706a88", "key": "description"}, {"hash": "492e44c52866ca7cd07f48697c41d865", "key": "published"}, {"hash": "8cd4821cb504d25572038ed182587d85", "key": "cvss"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "0ef6722b70f0e65758c3fb8b6a1f35f0", "key": "href"}, {"hash": "07948b8ff59e8dda0b01012f70f00327", "key": "naslFamily"}, {"hash": "a07fbf1485cba97842866a145d3b68c3", "key": "pluginID"}, {"hash": "168ee77c57dc7ab7ff70ae35cd094e66", "key": "references"}, {"hash": "2388b8c7b6cf90c46e5d4141f21d20d6", "key": "modified"}], "history": [], "href": "https://www.tenable.com/plugins/index.php?view=single&id=62204", "id": "HP_DATABASE_ARCHIVING_DETECT.NASL", "lastseen": "2019-02-21T01:17:40", "modified": "2012-09-20T00:00:00", "naslFamily": "CGI abuses", "objectVersion": "1.3", "pluginID": "62204", "published": "2012-09-19T00:00:00", "references": ["http://www.nessus.org/u?9e8976b9"], "reporter": "Tenable", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(62204);\n script_version(\"$Revision: 1.1 $\");\n script_cvs_date(\"$Date: 2012/09/20 00:52:09 $\");\n\n script_name(english:\"HP Database Archiving Software Detection\");\n script_summary(english:\"Looks for the login page.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"A database archiving software web console is running on the remote\nhost.\");\n script_set_attribute(attribute:\"description\", value:\n\"HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.\");\n # http://www8.hp.com/us/en/software-solutions/software.html?compURI=1175612#.UFI37q7F3X5\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?9e8976b9\");\n script_set_attribute(attribute:\"solution\", value:\"n/a\");\n script_set_attribute(attribute:\"risk_factor\", value:\"None\");\n\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2012/09/19\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"remote\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:hp:database_archiving_software\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"CGI abuses\");\n\n script_copyright(english:\"This script is Copyright (C) 2012 Tenable Network Security, Inc.\");\n\n script_dependencies(\"http_version.nasl\");\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n script_require_ports(\"Services/www\", 443, 8080);\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"http.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"webapp_func.inc\");\n\n# Get the ports that web servers have been found on, defaulting to 8080\nport = get_http_port(default:8080);\n\n# Put together a list of directories we should check in.\ndirs = make_list();\ndirs[0] = '/WebConsole/login/auth';\n\n# Put together checks for different pages that we can scrape version\n# information from.\nchecks = make_array();\n\nregexes = make_list();\nregexes[0] = make_list(\n '<title>HP Database Archiving - Login</title>'\n);\nregexes[1] = make_list(\n \"<a href=./WebConsole/help/about.*>(\\d+.\\d+.\\d+)</a>\"\n);\n\nchecks[\"/\"] = regexes;\n\n# Find where the web interface is installed.\ninstalls = find_install(appname:\"hp_database_archiving_software\", checks:checks, dirs:dirs, port:port);\nif (isnull(installs)) audit(AUDIT_NOT_DETECT, \"HP Database Archiving Software\", port);\n\n# Report our findings.\nreport = NULL;\nif (report_verbosity > 0)\n{\n report = get_install_report(\n display_name : \"HP Database Archiving Software\",\n installs : installs,\n port : port\n );\n}\nsecurity_note(port:port, extra:report);\n", "title": "HP Database Archiving Software Detection", "type": "nessus", "viewCount": 1}, "differentElements": ["description", "reporter", "modified", "href"], "edition": 4, "lastseen": "2019-02-21T01:17:40"}, {"bulletin": {"bulletinFamily": "scanner", "cpe": ["cpe:/a:hp:database_archiving_software"], "cvelist": [], "cvss": {"score": 0.0, "vector": "NONE"}, "description": "HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.", "edition": 3, "enchantments": {"dependencies": {"modified": "2019-01-16T20:14:48", "references": []}, "score": {"value": 5.0, "vector": "NONE"}}, "hash": "caf20bbbac7e5edd781c13eb5a647f8d23cdd6c900a64e6839028c63b5bdba17", "hashmap": [{"hash": "bcfe5b16c2e070945b28805edc5c3900", "key": "sourceData"}, {"hash": "13437d6c8405afb6bba15fdc192a9d18", "key": "title"}, {"hash": "959eaddf4ae2caf3f029c4c9118e05ae", "key": "description"}, {"hash": "9cf00d658b687f030ebe173a0528c567", "key": "reporter"}, {"hash": "b166fa6a994ab7c2642d4c6319628a1d", "key": "cpe"}, {"hash": "d41d8cd98f00b204e9800998ecf8427e", "key": "cvelist"}, {"hash": "492e44c52866ca7cd07f48697c41d865", "key": "published"}, {"hash": "8cd4821cb504d25572038ed182587d85", "key": "cvss"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "0ef6722b70f0e65758c3fb8b6a1f35f0", "key": "href"}, {"hash": "07948b8ff59e8dda0b01012f70f00327", "key": "naslFamily"}, {"hash": "a07fbf1485cba97842866a145d3b68c3", "key": "pluginID"}, {"hash": "168ee77c57dc7ab7ff70ae35cd094e66", "key": "references"}, {"hash": "2388b8c7b6cf90c46e5d4141f21d20d6", "key": "modified"}], "history": [], "href": "https://www.tenable.com/plugins/index.php?view=single&id=62204", "id": "HP_DATABASE_ARCHIVING_DETECT.NASL", "lastseen": "2019-01-16T20:14:48", "modified": "2012-09-20T00:00:00", "naslFamily": "CGI abuses", "objectVersion": "1.3", "pluginID": "62204", "published": "2012-09-19T00:00:00", "references": ["http://www.nessus.org/u?9e8976b9"], "reporter": "Tenable", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(62204);\n script_version(\"$Revision: 1.1 $\");\n script_cvs_date(\"$Date: 2012/09/20 00:52:09 $\");\n\n script_name(english:\"HP Database Archiving Software Detection\");\n script_summary(english:\"Looks for the login page.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"A database archiving software web console is running on the remote\nhost.\");\n script_set_attribute(attribute:\"description\", value:\n\"HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.\");\n # http://www8.hp.com/us/en/software-solutions/software.html?compURI=1175612#.UFI37q7F3X5\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?9e8976b9\");\n script_set_attribute(attribute:\"solution\", value:\"n/a\");\n script_set_attribute(attribute:\"risk_factor\", value:\"None\");\n\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2012/09/19\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"remote\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:hp:database_archiving_software\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"CGI abuses\");\n\n script_copyright(english:\"This script is Copyright (C) 2012 Tenable Network Security, Inc.\");\n\n script_dependencies(\"http_version.nasl\");\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n script_require_ports(\"Services/www\", 443, 8080);\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"http.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"webapp_func.inc\");\n\n# Get the ports that web servers have been found on, defaulting to 8080\nport = get_http_port(default:8080);\n\n# Put together a list of directories we should check in.\ndirs = make_list();\ndirs[0] = '/WebConsole/login/auth';\n\n# Put together checks for different pages that we can scrape version\n# information from.\nchecks = make_array();\n\nregexes = make_list();\nregexes[0] = make_list(\n '<title>HP Database Archiving - Login</title>'\n);\nregexes[1] = make_list(\n \"<a href=./WebConsole/help/about.*>(\\d+.\\d+.\\d+)</a>\"\n);\n\nchecks[\"/\"] = regexes;\n\n# Find where the web interface is installed.\ninstalls = find_install(appname:\"hp_database_archiving_software\", checks:checks, dirs:dirs, port:port);\nif (isnull(installs)) audit(AUDIT_NOT_DETECT, \"HP Database Archiving Software\", port);\n\n# Report our findings.\nreport = NULL;\nif (report_verbosity > 0)\n{\n report = get_install_report(\n display_name : \"HP Database Archiving Software\",\n installs : installs,\n port : port\n );\n}\nsecurity_note(port:port, extra:report);\n", "title": "HP Database Archiving Software Detection", "type": "nessus", "viewCount": 0}, "differentElements": ["description"], "edition": 3, "lastseen": "2019-01-16T20:14:48"}, {"bulletin": {"bulletinFamily": "scanner", "cpe": ["cpe:/a:hp:database_archiving_software"], "cvelist": [], "cvss": {"score": 0.0, "vector": "NONE"}, "description": "HP Database Archiving Software, a web interface for managing database archives, is running on the remote host.", "edition": 2, "enchantments": {"score": {"value": 5.0, "vector": "NONE"}}, "hash": "26e31f43c48e164fa7a576720e3070fadb3cef181017b22490bf346ed2a178b1", "hashmap": [{"hash": "bcfe5b16c2e070945b28805edc5c3900", "key": "sourceData"}, {"hash": "13437d6c8405afb6bba15fdc192a9d18", "key": "title"}, {"hash": "9cf00d658b687f030ebe173a0528c567", "key": "reporter"}, {"hash": "b166fa6a994ab7c2642d4c6319628a1d", "key": "cpe"}, {"hash": "d41d8cd98f00b204e9800998ecf8427e", "key": "cvelist"}, {"hash": "09cf0cd9cabda38239d27cb301706a88", "key": "description"}, {"hash": "492e44c52866ca7cd07f48697c41d865", "key": "published"}, {"hash": "8cd4821cb504d25572038ed182587d85", "key": "cvss"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "0ef6722b70f0e65758c3fb8b6a1f35f0", "key": "href"}, {"hash": "07948b8ff59e8dda0b01012f70f00327", "key": "naslFamily"}, {"hash": "a07fbf1485cba97842866a145d3b68c3", "key": "pluginID"}, {"hash": "168ee77c57dc7ab7ff70ae35cd094e66", "key": "references"}, {"hash": "2388b8c7b6cf90c46e5d4141f21d20d6", "key": "modified"}], "history": [], "href": "https://www.tenable.com/plugins/index.php?view=single&id=62204", "id": "HP_DATABASE_ARCHIVING_DETECT.NASL", "lastseen": "2017-10-29T13:34:09", "modified": "2012-09-20T00:00:00", "naslFamily": "CGI abuses", "objectVersion": "1.3", "pluginID": "62204", "published": "2012-09-19T00:00:00", "references": ["http://www.nessus.org/u?9e8976b9"], "reporter": "Tenable", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(62204);\n script_version(\"$Revision: 1.1 $\");\n script_cvs_date(\"$Date: 2012/09/20 00:52:09 $\");\n\n script_name(english:\"HP Database Archiving Software Detection\");\n script_summary(english:\"Looks for the login page.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"A database archiving software web console is running on the remote\nhost.\");\n script_set_attribute(attribute:\"description\", value:\n\"HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.\");\n # http://www8.hp.com/us/en/software-solutions/software.html?compURI=1175612#.UFI37q7F3X5\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?9e8976b9\");\n script_set_attribute(attribute:\"solution\", value:\"n/a\");\n script_set_attribute(attribute:\"risk_factor\", value:\"None\");\n\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2012/09/19\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"remote\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:hp:database_archiving_software\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"CGI abuses\");\n\n script_copyright(english:\"This script is Copyright (C) 2012 Tenable Network Security, Inc.\");\n\n script_dependencies(\"http_version.nasl\");\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n script_require_ports(\"Services/www\", 443, 8080);\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"http.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"webapp_func.inc\");\n\n# Get the ports that web servers have been found on, defaulting to 8080\nport = get_http_port(default:8080);\n\n# Put together a list of directories we should check in.\ndirs = make_list();\ndirs[0] = '/WebConsole/login/auth';\n\n# Put together checks for different pages that we can scrape version\n# information from.\nchecks = make_array();\n\nregexes = make_list();\nregexes[0] = make_list(\n '<title>HP Database Archiving - Login</title>'\n);\nregexes[1] = make_list(\n \"<a href=./WebConsole/help/about.*>(\\d+.\\d+.\\d+)</a>\"\n);\n\nchecks[\"/\"] = regexes;\n\n# Find where the web interface is installed.\ninstalls = find_install(appname:\"hp_database_archiving_software\", checks:checks, dirs:dirs, port:port);\nif (isnull(installs)) audit(AUDIT_NOT_DETECT, \"HP Database Archiving Software\", port);\n\n# Report our findings.\nreport = NULL;\nif (report_verbosity > 0)\n{\n report = get_install_report(\n display_name : \"HP Database Archiving Software\",\n installs : installs,\n port : port\n );\n}\nsecurity_note(port:port, extra:report);\n", "title": "HP Database Archiving Software Detection", "type": "nessus", "viewCount": 0}, "differentElements": ["description"], "edition": 2, "lastseen": "2017-10-29T13:34:09"}, {"bulletin": {"bulletinFamily": "scanner", "cpe": ["cpe:/a:hp:database_archiving_software"], "cvelist": [], "cvss": {"score": 0.0, "vector": "NONE"}, "description": "HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.", "edition": 6, "enchantments": {"dependencies": {"modified": "2019-11-01T02:47:12", "references": []}, "score": {"modified": "2019-11-01T02:47:12", "value": 0.0, "vector": "NONE"}}, "hash": "cff117c355cc3a62be9064f88afdde4cfa94c18b89c0f8ba332abf9317578fa4", "hashmap": [{"hash": "bcfe5b16c2e070945b28805edc5c3900", "key": "sourceData"}, {"hash": "13437d6c8405afb6bba15fdc192a9d18", "key": "title"}, {"hash": "e2806e37015c85632873f9773dfc8323", "key": "reporter"}, {"hash": "959eaddf4ae2caf3f029c4c9118e05ae", "key": "description"}, {"hash": "abcf9266f425f12dda38f529cd4a94bc", "key": "modified"}, {"hash": "b166fa6a994ab7c2642d4c6319628a1d", "key": "cpe"}, {"hash": "d41d8cd98f00b204e9800998ecf8427e", "key": "cvelist"}, {"hash": "b582d2cb17a5c6cba525a3a22877cbcd", "key": "href"}, {"hash": "492e44c52866ca7cd07f48697c41d865", "key": "published"}, {"hash": "8cd4821cb504d25572038ed182587d85", "key": "cvss"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "07948b8ff59e8dda0b01012f70f00327", "key": "naslFamily"}, {"hash": "a07fbf1485cba97842866a145d3b68c3", "key": "pluginID"}, {"hash": "168ee77c57dc7ab7ff70ae35cd094e66", "key": "references"}], "history": [], "href": "https://www.tenable.com/plugins/nessus/62204", "id": "HP_DATABASE_ARCHIVING_DETECT.NASL", "lastseen": "2019-11-01T02:47:12", "modified": "2019-11-02T00:00:00", "naslFamily": "CGI abuses", "objectVersion": "1.3", "pluginID": "62204", "published": "2012-09-19T00:00:00", "references": ["http://www.nessus.org/u?9e8976b9"], "reporter": "This script is Copyright (C) 2012 Tenable Network Security, Inc.", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(62204);\n script_version(\"$Revision: 1.1 $\");\n script_cvs_date(\"$Date: 2012/09/20 00:52:09 $\");\n\n script_name(english:\"HP Database Archiving Software Detection\");\n script_summary(english:\"Looks for the login page.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"A database archiving software web console is running on the remote\nhost.\");\n script_set_attribute(attribute:\"description\", value:\n\"HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.\");\n # http://www8.hp.com/us/en/software-solutions/software.html?compURI=1175612#.UFI37q7F3X5\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?9e8976b9\");\n script_set_attribute(attribute:\"solution\", value:\"n/a\");\n script_set_attribute(attribute:\"risk_factor\", value:\"None\");\n\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2012/09/19\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"remote\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:hp:database_archiving_software\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"CGI abuses\");\n\n script_copyright(english:\"This script is Copyright (C) 2012 Tenable Network Security, Inc.\");\n\n script_dependencies(\"http_version.nasl\");\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n script_require_ports(\"Services/www\", 443, 8080);\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"http.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"webapp_func.inc\");\n\n# Get the ports that web servers have been found on, defaulting to 8080\nport = get_http_port(default:8080);\n\n# Put together a list of directories we should check in.\ndirs = make_list();\ndirs[0] = '/WebConsole/login/auth';\n\n# Put together checks for different pages that we can scrape version\n# information from.\nchecks = make_array();\n\nregexes = make_list();\nregexes[0] = make_list(\n '<title>HP Database Archiving - Login</title>'\n);\nregexes[1] = make_list(\n \"<a href=./WebConsole/help/about.*>(\\d+.\\d+.\\d+)</a>\"\n);\n\nchecks[\"/\"] = regexes;\n\n# Find where the web interface is installed.\ninstalls = find_install(appname:\"hp_database_archiving_software\", checks:checks, dirs:dirs, port:port);\nif (isnull(installs)) audit(AUDIT_NOT_DETECT, \"HP Database Archiving Software\", port);\n\n# Report our findings.\nreport = NULL;\nif (report_verbosity > 0)\n{\n report = get_install_report(\n display_name : \"HP Database Archiving Software\",\n installs : installs,\n port : port\n );\n}\nsecurity_note(port:port, extra:report);\n", "title": "HP Database Archiving Software Detection", "type": "nessus", "viewCount": 1}, "differentElements": ["reporter", "sourceData"], "edition": 6, "lastseen": "2019-11-01T02:47:12"}, {"bulletin": {"bulletinFamily": "scanner", "cpe": ["cpe:/a:hp:database_archiving_software"], "cvelist": [], "cvss": {"score": 0.0, "vector": "NONE"}, "description": "HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.", "edition": 5, "enchantments": {"dependencies": {"modified": "2019-10-28T20:31:00", "references": []}, "score": {"modified": "2019-10-28T20:31:00", "value": 0.0, "vector": "NONE"}}, "hash": "c69e5078012bae50295e308a5c65ab4822a19880dc7ee70e9b2f3dc799db3d64", "hashmap": [{"hash": "bcfe5b16c2e070945b28805edc5c3900", "key": "sourceData"}, {"hash": "13437d6c8405afb6bba15fdc192a9d18", "key": "title"}, {"hash": "e2806e37015c85632873f9773dfc8323", "key": "reporter"}, {"hash": "959eaddf4ae2caf3f029c4c9118e05ae", "key": "description"}, {"hash": "b166fa6a994ab7c2642d4c6319628a1d", "key": "cpe"}, {"hash": "d41d8cd98f00b204e9800998ecf8427e", "key": "cvelist"}, {"hash": "b582d2cb17a5c6cba525a3a22877cbcd", "key": "href"}, {"hash": "492e44c52866ca7cd07f48697c41d865", "key": "published"}, {"hash": "8cd4821cb504d25572038ed182587d85", "key": "cvss"}, {"hash": "bbdaea376f500d25f6b0c1050311dd07", "key": "bulletinFamily"}, {"hash": "5e0bd03bec244039678f2b955a2595aa", "key": "type"}, {"hash": "0bafb6325bcaf483a25404f785191cc5", "key": "modified"}, {"hash": "07948b8ff59e8dda0b01012f70f00327", "key": "naslFamily"}, {"hash": "a07fbf1485cba97842866a145d3b68c3", "key": "pluginID"}, {"hash": "168ee77c57dc7ab7ff70ae35cd094e66", "key": "references"}], "history": [], "href": "https://www.tenable.com/plugins/nessus/62204", "id": "HP_DATABASE_ARCHIVING_DETECT.NASL", "lastseen": "2019-10-28T20:31:00", "modified": "2019-10-02T00:00:00", "naslFamily": "CGI abuses", "objectVersion": "1.3", "pluginID": "62204", "published": "2012-09-19T00:00:00", "references": ["http://www.nessus.org/u?9e8976b9"], "reporter": "This script is Copyright (C) 2012 Tenable Network Security, Inc.", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(62204);\n script_version(\"$Revision: 1.1 $\");\n script_cvs_date(\"$Date: 2012/09/20 00:52:09 $\");\n\n script_name(english:\"HP Database Archiving Software Detection\");\n script_summary(english:\"Looks for the login page.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"A database archiving software web console is running on the remote\nhost.\");\n script_set_attribute(attribute:\"description\", value:\n\"HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.\");\n # http://www8.hp.com/us/en/software-solutions/software.html?compURI=1175612#.UFI37q7F3X5\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?9e8976b9\");\n script_set_attribute(attribute:\"solution\", value:\"n/a\");\n script_set_attribute(attribute:\"risk_factor\", value:\"None\");\n\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2012/09/19\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"remote\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:hp:database_archiving_software\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"CGI abuses\");\n\n script_copyright(english:\"This script is Copyright (C) 2012 Tenable Network Security, Inc.\");\n\n script_dependencies(\"http_version.nasl\");\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n script_require_ports(\"Services/www\", 443, 8080);\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"http.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"webapp_func.inc\");\n\n# Get the ports that web servers have been found on, defaulting to 8080\nport = get_http_port(default:8080);\n\n# Put together a list of directories we should check in.\ndirs = make_list();\ndirs[0] = '/WebConsole/login/auth';\n\n# Put together checks for different pages that we can scrape version\n# information from.\nchecks = make_array();\n\nregexes = make_list();\nregexes[0] = make_list(\n '<title>HP Database Archiving - Login</title>'\n);\nregexes[1] = make_list(\n \"<a href=./WebConsole/help/about.*>(\\d+.\\d+.\\d+)</a>\"\n);\n\nchecks[\"/\"] = regexes;\n\n# Find where the web interface is installed.\ninstalls = find_install(appname:\"hp_database_archiving_software\", checks:checks, dirs:dirs, port:port);\nif (isnull(installs)) audit(AUDIT_NOT_DETECT, \"HP Database Archiving Software\", port);\n\n# Report our findings.\nreport = NULL;\nif (report_verbosity > 0)\n{\n report = get_install_report(\n display_name : \"HP Database Archiving Software\",\n installs : installs,\n port : port\n );\n}\nsecurity_note(port:port, extra:report);\n", "title": "HP Database Archiving Software Detection", "type": "nessus", "viewCount": 1}, "differentElements": ["modified"], "edition": 5, "lastseen": "2019-10-28T20:31:00"}], "edition": 7, "hashmap": [{"key": "bulletinFamily", "hash": "bbdaea376f500d25f6b0c1050311dd07"}, {"key": "cpe", "hash": "b166fa6a994ab7c2642d4c6319628a1d"}, {"key": "cvelist", "hash": "d41d8cd98f00b204e9800998ecf8427e"}, {"key": "cvss", "hash": "8cd4821cb504d25572038ed182587d85"}, {"key": "description", "hash": "959eaddf4ae2caf3f029c4c9118e05ae"}, {"key": "href", "hash": "b582d2cb17a5c6cba525a3a22877cbcd"}, {"key": "modified", "hash": "abcf9266f425f12dda38f529cd4a94bc"}, {"key": "naslFamily", "hash": "07948b8ff59e8dda0b01012f70f00327"}, {"key": "pluginID", "hash": "a07fbf1485cba97842866a145d3b68c3"}, {"key": "published", "hash": "492e44c52866ca7cd07f48697c41d865"}, {"key": "references", "hash": "168ee77c57dc7ab7ff70ae35cd094e66"}, {"key": "reporter", "hash": "9d94db595fbe8f7431aa5781b00b304e"}, {"key": "sourceData", "hash": "e66859040842df77b753f3da6e83190d"}, {"key": "title", "hash": "13437d6c8405afb6bba15fdc192a9d18"}, {"key": "type", "hash": "5e0bd03bec244039678f2b955a2595aa"}], "hash": "553d42ae3247093495695a9947b16f847f6ad3418de542944d17c4322015e088", "viewCount": 1, "enchantments": {"dependencies": {"references": [], "modified": "2019-11-26T11:13:39"}, "score": {"value": -0.0, "vector": "NONE", "modified": "2019-11-26T11:13:39"}, "vulnersScore": -0.0}, "objectVersion": "1.3", "sourceData": "#\n# (C) Tenable Network Security, Inc.\n#\n\ninclude(\"compat.inc\");\n\nif (description)\n{\n script_id(62204);\n script_version(\"1.2\");\n script_cvs_date(\"Date: 2019/11/25\");\n\n script_name(english:\"HP Database Archiving Software Detection\");\n script_summary(english:\"Looks for the login page.\");\n\n script_set_attribute(attribute:\"synopsis\", value:\n\"A database archiving software web console is running on the remote\nhost.\");\n script_set_attribute(attribute:\"description\", value:\n\"HP Database Archiving Software, a web interface for managing database\narchives, is running on the remote host.\");\n # http://www8.hp.com/us/en/software-solutions/software.html?compURI=1175612#.UFI37q7F3X5\n script_set_attribute(attribute:\"see_also\", value:\"http://www.nessus.org/u?9e8976b9\");\n script_set_attribute(attribute:\"solution\", value:\"n/a\");\n script_set_attribute(attribute:\"risk_factor\", value:\"None\");\n\n script_set_attribute(attribute:\"plugin_publication_date\", value:\"2012/09/19\");\n\n script_set_attribute(attribute:\"plugin_type\", value:\"remote\");\n script_set_attribute(attribute:\"cpe\", value:\"cpe:/a:hp:database_archiving_software\");\n script_set_attribute(attribute:\"asset_inventory\", value:\"True\");\n script_end_attributes();\n\n script_category(ACT_GATHER_INFO);\n script_family(english:\"CGI abuses\");\n\n script_copyright(english:\"This script is Copyright (C) 2012-2019 and is owned by Tenable, Inc. or an Affiliate thereof.\");\n\n script_dependencies(\"http_version.nasl\");\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n script_require_ports(\"Services/www\", 443, 8080);\n\n exit(0);\n}\n\ninclude(\"audit.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"http.inc\");\ninclude(\"misc_func.inc\");\ninclude(\"webapp_func.inc\");\n\n# Get the ports that web servers have been found on, defaulting to 8080\nport = get_http_port(default:8080);\n\n# Put together a list of directories we should check in.\ndirs = make_list();\ndirs[0] = '/WebConsole/login/auth';\n\n# Put together checks for different pages that we can scrape version\n# information from.\nchecks = make_array();\n\nregexes = make_list();\nregexes[0] = make_list(\n '<title>HP Database Archiving - Login</title>'\n);\nregexes[1] = make_list(\n \"<a href=./WebConsole/help/about.*>(\\d+.\\d+.\\d+)</a>\"\n);\n\nchecks[\"/\"] = regexes;\n\n# Find where the web interface is installed.\ninstalls = find_install(appname:\"hp_database_archiving_software\", checks:checks, dirs:dirs, port:port);\nif (isnull(installs)) audit(AUDIT_NOT_DETECT, \"HP Database Archiving Software\", port);\n\n# Report our findings.\nreport = NULL;\nif (report_verbosity > 0)\n{\n report = get_install_report(\n display_name : \"HP Database Archiving Software\",\n installs : installs,\n port : port\n );\n}\nsecurity_note(port:port, extra:report);\n", "naslFamily": "CGI abuses", "pluginID": "62204", "cpe": ["cpe:/a:hp:database_archiving_software"], "scheme": null}