ID OPENVAS:1361412562310108429 Type openvas Reporter Copyright (C) 2018 Greenbone Networks GmbH Modified 2020-08-24T00:00:00
Description
Detection of phpIP Management.
The script sends a connection request to the server and attempts to detect phpIP
Management.
###############################################################################
# OpenVAS Vulnerability Test
#
# phpIP Management Detection
#
# Authors:
# Michael Martin <michael.martin@greenbone.net>
# Christian Fischer <christian.fischer@greenbone.net>
#
# Copyright:
# Copyright (C) 2018 Greenbone Networks GmbH, https://www.greenbone.net
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################
if(description)
{
script_oid("1.3.6.1.4.1.25623.1.0.108429");
script_version("2020-08-24T15:18:35+0000");
script_tag(name:"last_modification", value:"2020-08-24 15:18:35 +0000 (Mon, 24 Aug 2020)");
script_tag(name:"creation_date", value:"2018-03-13 10:52:49 +0100 (Tue, 13 Mar 2018)");
script_tag(name:"cvss_base", value:"0.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
script_name("phpIP Management Detection");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2018 Greenbone Networks GmbH");
script_family("Product detection");
script_dependencies("find_service.nasl", "no404.nasl", "webmirror.nasl", "DDI_Directory_Scanner.nasl", "global_settings.nasl");
script_require_ports("Services/www", 80);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name:"summary", value:"Detection of phpIP Management.
The script sends a connection request to the server and attempts to detect phpIP
Management.");
script_xref(name:"URL", value:"https://sourceforge.net/projects/phpip/");
script_tag(name:"qod_type", value:"remote_banner");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");
include("list_array_func.inc");
include("host_details.inc");
port = http_get_port( default:80 );
rootInstalled = FALSE;
foreach dir( make_list_unique( "/", "/phpip", http_cgi_dirs( port:port ) ) ) {
if( rootInstalled ) break;
install = dir;
if( dir == "/" ) dir = "";
url = dir + "/login.php";
res = http_get_cache( port:port, item:url );
if( egrep( string:res, pattern:"<TITLE>phpIP Management : Login</TITLE>", icase:TRUE ) ||
egrep( string:res, pattern:'<META NAME="GENERATOR" CONTENT="phpIP Management">', icase:TRUE ) ) {
# Version isn't exposed by the application
version = "unknown";
if( install == "/" ) rootInstalled = TRUE;
set_kb_item( name:"phpip_management/detected", value:TRUE );
set_kb_item( name:"phpip_management/" + port + "/version", value:version );
cpe = "cpe:/a:phpip:phpip_management";
register_product( cpe:cpe, location:install, port:port, service:"www" );
log_message( data:build_detection_report( app:"phpIP Management",
version:version,
install:install,
cpe:cpe ),
port:port );
}
}
{"id": "OPENVAS:1361412562310108429", "type": "openvas", "bulletinFamily": "scanner", "title": "phpIP Management Detection", "description": "Detection of phpIP Management.\n\n The script sends a connection request to the server and attempts to detect phpIP\n Management.", "published": "2018-03-13T00:00:00", "modified": "2020-08-24T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310108429", "reporter": "Copyright (C) 2018 Greenbone Networks GmbH", "references": ["https://sourceforge.net/projects/phpip/"], "cvelist": [], "lastseen": "2020-10-04T15:17:28", "viewCount": 2, "enchantments": {"dependencies": {"references": [], "modified": "2020-10-04T15:17:28", "rev": 2}, "score": {"value": 0.1, "vector": "NONE", "modified": "2020-10-04T15:17:28", "rev": 2}, "vulnersScore": 0.1}, "pluginID": "1361412562310108429", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# phpIP Management Detection\n#\n# Authors:\n# Michael Martin <michael.martin@greenbone.net>\n# Christian Fischer <christian.fischer@greenbone.net>\n#\n# Copyright:\n# Copyright (C) 2018 Greenbone Networks GmbH, https://www.greenbone.net\n#\n# This program is free software; you can redistribute it and/or modify\n# it under the terms of the GNU General Public License as published by\n# the Free Software Foundation; either version 2 of the License, or\n# (at your option) any later version.\n#\n# This program is distributed in the hope that it will be useful,\n# but WITHOUT ANY WARRANTY; without even the implied warranty of\n# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n# GNU General Public License for more details.\n#\n# You should have received a copy of the GNU General Public License\n# along with this program; if not, write to the Free Software\n# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.\n###############################################################################\n\nif(description)\n{\n script_oid(\"1.3.6.1.4.1.25623.1.0.108429\");\n script_version(\"2020-08-24T15:18:35+0000\");\n script_tag(name:\"last_modification\", value:\"2020-08-24 15:18:35 +0000 (Mon, 24 Aug 2020)\");\n script_tag(name:\"creation_date\", value:\"2018-03-13 10:52:49 +0100 (Tue, 13 Mar 2018)\");\n script_tag(name:\"cvss_base\", value:\"0.0\");\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:N/I:N/A:N\");\n script_name(\"phpIP Management Detection\");\n script_category(ACT_GATHER_INFO);\n script_copyright(\"Copyright (C) 2018 Greenbone Networks GmbH\");\n script_family(\"Product detection\");\n script_dependencies(\"find_service.nasl\", \"no404.nasl\", \"webmirror.nasl\", \"DDI_Directory_Scanner.nasl\", \"global_settings.nasl\");\n script_require_ports(\"Services/www\", 80);\n script_exclude_keys(\"Settings/disable_cgi_scanning\");\n\n script_tag(name:\"summary\", value:\"Detection of phpIP Management.\n\n The script sends a connection request to the server and attempts to detect phpIP\n Management.\");\n\n script_xref(name:\"URL\", value:\"https://sourceforge.net/projects/phpip/\");\n\n script_tag(name:\"qod_type\", value:\"remote_banner\");\n\n exit(0);\n}\n\ninclude(\"http_func.inc\");\ninclude(\"http_keepalive.inc\");\ninclude(\"port_service_func.inc\");\ninclude(\"list_array_func.inc\");\ninclude(\"host_details.inc\");\n\nport = http_get_port( default:80 );\n\nrootInstalled = FALSE;\n\nforeach dir( make_list_unique( \"/\", \"/phpip\", http_cgi_dirs( port:port ) ) ) {\n\n if( rootInstalled ) break;\n\n install = dir;\n if( dir == \"/\" ) dir = \"\";\n\n url = dir + \"/login.php\";\n res = http_get_cache( port:port, item:url );\n\n if( egrep( string:res, pattern:\"<TITLE>phpIP Management : Login</TITLE>\", icase:TRUE ) ||\n egrep( string:res, pattern:'<META NAME=\"GENERATOR\" CONTENT=\"phpIP Management\">', icase:TRUE ) ) {\n\n # Version isn't exposed by the application\n version = \"unknown\";\n\n if( install == \"/\" ) rootInstalled = TRUE;\n set_kb_item( name:\"phpip_management/detected\", value:TRUE );\n set_kb_item( name:\"phpip_management/\" + port + \"/version\", value:version );\n\n cpe = \"cpe:/a:phpip:phpip_management\";\n\n register_product( cpe:cpe, location:install, port:port, service:\"www\" );\n\n log_message( data:build_detection_report( app:\"phpIP Management\",\n version:version,\n install:install,\n cpe:cpe ),\n port:port );\n }\n}\n", "naslFamily": "Product detection"}