ID OPENVAS:1361412562310105533 Type openvas Reporter Copyright (C) 2016 Greenbone Networks GmbH Modified 2020-08-24T00:00:00
Description
The script sends a connection request to the server and attempts to extract the version number from the reply.
###############################################################################
# OpenVAS Vulnerability Test
#
# Cisco Unified IP Phone Detection
#
# Authors:
# Michael Meyer <michael.meyer@greenbone.net>
#
# Copyright:
# Copyright (C) 2016 Greenbone Networks GmbH
#
# 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.105533");
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:"2016-02-09 09:44:27 +0100 (Tue, 09 Feb 2016)");
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("Cisco Unified IP Phone Detection");
script_category(ACT_GATHER_INFO);
script_family("Product detection");
script_copyright("Copyright (C) 2016 Greenbone Networks GmbH");
script_dependencies("find_service.nasl", "httpver.nasl", "global_settings.nasl");
script_require_ports("Services/www", 80);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name:"summary", value:"The script sends a connection request to the server and attempts to extract the version number from the reply.");
script_tag(name:"qod_type", value:"remote_banner");
exit(0);
}
include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");
include("host_details.inc");
port = http_get_port( default:80 );
buf = http_get_cache( port:port, item:"/" );
if( "<TITLE>Cisco Systems, Inc.</TITLE>" >!< buf || buf !~ 'Cisco (Unified )?IP Phone' ) {
req = http_get(port: port, item: "/CGI/Java/Serviceability?adapter=device.statistics.device");
buf = http_keepalive_send_recv(port: port, data: req);
if( "<TITLE>Cisco Systems, Inc.</TITLE>" >!< buf || buf !~ 'Cisco (Unified )?IP Phone' )
exit( 0 );
}
model = 'unknown';
vers = 'unknown';
app = 'Cisco Unified IP Phone';
mod = eregmatch( pattern:'Cisco (Unified )?IP Phone ([^ ),]+)', string:buf );
if( ! isnull( mod[2] ) )
{
model = mod[2];
set_kb_item( name:"cisco/ip_phone/model", value:model );
app += ' (' + model + ')';
}
hn = eregmatch( pattern:'Cisco (Unified )?IP Phone ([^ ),]+ \\(([^)]+)\\))', string:buf );
if( ! isnull( hn[3] ) )
{
hostname = hn[3];
set_kb_item( name:"cisco/ip_phone/hostname", value:hostname );
}
lines = split( buf, sep:"<TR>", keep:FALSE );
foreach line( lines )
{
if( ! version[1] )
version = eregmatch( pattern:'<TD><B>\\s*Version</B></TD><td width=20></TD><TD><B>([^<]+)</B></TD></TR>', string:line );
if( ! phone_dn[1] )
phone_dn = eregmatch( pattern:'<TD><B>\\s*Phone DN</B></TD><td width=20></TD><TD><B>([^<]+)</B></TD></TR>', string:line );
if( version[1] && phone_dn[1] ) break;
}
cpe = 'cpe:/h:cisco:unified_ip_phone';
if( version[1] )
{
# replace unicode
version = ereg_replace(pattern: "-", string: version[1], replace: "-");
cpe += ':' + version;
vers = version;
set_kb_item( name:"cisco/ip_phone/version", value:vers );
}
if( phone_dn[1] )
{
pdn = phone_dn[1];
set_kb_item( name:"cisco/ip_phone/phone_dn", value:phone_dn );
}
register_and_report_os( os:"Cisco Native Unix (CNU) on Cisco Unified IP Phone", cpe:"cpe:/o:cisco:cnu-os", banner_type:"HTTP banner", port:port, desc:"Cisco Unified IP Phone Detection", runs_key:"unixoide" );
register_product( cpe:cpe, location:"/", port:port, service:"www" );
report = 'Detected ' + app + '\n' +
'Version: ' + vers + '\n';
if( hostname ) report += 'Hostname: ' + hostname + '\n';
if( pdn ) report += 'Phone DN: ' + pdn + '\n';
log_message( port:port, data:report );
exit(0);
{"id": "OPENVAS:1361412562310105533", "type": "openvas", "bulletinFamily": "scanner", "title": "Cisco Unified IP Phone Detection", "description": "The script sends a connection request to the server and attempts to extract the version number from the reply.", "published": "2016-02-09T00:00:00", "modified": "2020-08-24T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310105533", "reporter": "Copyright (C) 2016 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2020-10-04T15:17:29", "viewCount": 1, "enchantments": {"dependencies": {"references": [], "modified": "2020-10-04T15:17:29", "rev": 2}, "score": {"value": 0.0, "vector": "NONE", "modified": "2020-10-04T15:17:29", "rev": 2}, "vulnersScore": 0.0}, "pluginID": "1361412562310105533", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Cisco Unified IP Phone Detection\n#\n# Authors:\n# Michael Meyer <michael.meyer@greenbone.net>\n#\n# Copyright:\n# Copyright (C) 2016 Greenbone Networks GmbH\n#\n# This program is free software; you can redistribute it and/or\n# modify it under the terms of the GNU General Public License\n# as published by the Free Software Foundation; either version 2\n# of the License, or (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.105533\");\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:\"2016-02-09 09:44:27 +0100 (Tue, 09 Feb 2016)\");\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(\"Cisco Unified IP Phone Detection\");\n script_category(ACT_GATHER_INFO);\n script_family(\"Product detection\");\n script_copyright(\"Copyright (C) 2016 Greenbone Networks GmbH\");\n script_dependencies(\"find_service.nasl\", \"httpver.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:\"The script sends a connection request to the server and attempts to extract the version number from the reply.\");\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(\"host_details.inc\");\n\nport = http_get_port( default:80 );\n\nbuf = http_get_cache( port:port, item:\"/\" );\n\nif( \"<TITLE>Cisco Systems, Inc.</TITLE>\" >!< buf || buf !~ 'Cisco (Unified )?IP Phone' ) {\n req = http_get(port: port, item: \"/CGI/Java/Serviceability?adapter=device.statistics.device\");\n buf = http_keepalive_send_recv(port: port, data: req);\n if( \"<TITLE>Cisco Systems, Inc.</TITLE>\" >!< buf || buf !~ 'Cisco (Unified )?IP Phone' )\n exit( 0 );\n}\n\nmodel = 'unknown';\nvers = 'unknown';\napp = 'Cisco Unified IP Phone';\n\nmod = eregmatch( pattern:'Cisco (Unified )?IP Phone ([^ ),]+)', string:buf );\nif( ! isnull( mod[2] ) )\n{\n model = mod[2];\n set_kb_item( name:\"cisco/ip_phone/model\", value:model );\n app += ' (' + model + ')';\n}\n\nhn = eregmatch( pattern:'Cisco (Unified )?IP Phone ([^ ),]+ \\\\(([^)]+)\\\\))', string:buf );\nif( ! isnull( hn[3] ) )\n{\n hostname = hn[3];\n set_kb_item( name:\"cisco/ip_phone/hostname\", value:hostname );\n}\n\nlines = split( buf, sep:\"<TR>\", keep:FALSE );\n\nforeach line( lines )\n{\n if( ! version[1] )\n version = eregmatch( pattern:'<TD><B>\\\\s*Version</B></TD><td width=20></TD><TD><B>([^<]+)</B></TD></TR>', string:line );\n\n if( ! phone_dn[1] )\n phone_dn = eregmatch( pattern:'<TD><B>\\\\s*Phone DN</B></TD><td width=20></TD><TD><B>([^<]+)</B></TD></TR>', string:line );\n\n if( version[1] && phone_dn[1] ) break;\n}\n\ncpe = 'cpe:/h:cisco:unified_ip_phone';\n\nif( version[1] )\n{\n # replace unicode\n version = ereg_replace(pattern: \"-\", string: version[1], replace: \"-\");\n cpe += ':' + version;\n vers = version;\n set_kb_item( name:\"cisco/ip_phone/version\", value:vers );\n}\n\nif( phone_dn[1] )\n{\n pdn = phone_dn[1];\n set_kb_item( name:\"cisco/ip_phone/phone_dn\", value:phone_dn );\n}\n\nregister_and_report_os( os:\"Cisco Native Unix (CNU) on Cisco Unified IP Phone\", cpe:\"cpe:/o:cisco:cnu-os\", banner_type:\"HTTP banner\", port:port, desc:\"Cisco Unified IP Phone Detection\", runs_key:\"unixoide\" );\n\nregister_product( cpe:cpe, location:\"/\", port:port, service:\"www\" );\n\nreport = 'Detected ' + app + '\\n' +\n 'Version: ' + vers + '\\n';\n\nif( hostname ) report += 'Hostname: ' + hostname + '\\n';\nif( pdn ) report += 'Phone DN: ' + pdn + '\\n';\n\nlog_message( port:port, data:report );\n\nexit(0);\n\n", "naslFamily": "Product detection"}