ID OPENVAS:100280 Type openvas Reporter This script is Copyright (C) 2009 Greenbone Networks GmbH Modified 2017-04-26T00:00:00
Description
This host is running BigAnt IM Server, a instant messaging solution
for enterprise.
###############################################################################
# OpenVAS Vulnerability Test
# $Id: BigAnt_detect.nasl 6032 2017-04-26 09:02:50Z teissa $
#
# BigAnt IM Server Detection
#
# Authors:
# Michael Meyer
#
# Copyright:
# Copyright (c) 2009 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 version 2
# (or any later version), as published by the Free Software Foundation.
#
# 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.
###############################################################################
tag_summary = "This host is running BigAnt IM Server, a instant messaging solution
for enterprise.";
if (description)
{
script_id(100280);
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:N");
script_version("$Revision: 6032 $");
script_tag(name:"last_modification", value:"$Date: 2017-04-26 11:02:50 +0200 (Wed, 26 Apr 2017) $");
script_tag(name:"creation_date", value:"2009-10-01 18:57:31 +0200 (Thu, 01 Oct 2009)");
script_tag(name:"cvss_base", value:"0.0");
script_name("BigAnt IM Server Detection");
script_category(ACT_GATHER_INFO);
script_tag(name:"qod_type", value:"remote_banner");
script_family("Service detection");
script_copyright("This script is Copyright (C) 2009 Greenbone Networks GmbH");
script_dependencies("gb_get_http_banner.nasl");
script_mandatory_keys("AntServer/banner");
script_require_ports("Services/www", 6660);
script_tag(name : "summary" , value : tag_summary);
script_xref(name : "URL" , value : "http://www.bigantsoft.com/");
exit(0);
}
include("http_func.inc");
include("global_settings.inc");
include("misc_func.inc");
port = get_http_port(default:6660);
if(!get_port_state(port))exit(0);
banner = get_http_banner(port: port);
if(!banner)exit(0);
if(egrep(pattern:"AntServer", string:banner))
{
register_service(port:port, ipproto:"tcp", proto:"BigAnt");
if(report_verbosity > 0) {
log_message(port:port);
}
}
exit(0);
{"id": "OPENVAS:100280", "type": "openvas", "bulletinFamily": "scanner", "title": "BigAnt IM Server Detection", "description": "This host is running BigAnt IM Server, a instant messaging solution\nfor enterprise.", "published": "2009-10-01T00:00:00", "modified": "2017-04-26T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=100280", "reporter": "This script is Copyright (C) 2009 Greenbone Networks GmbH", "references": ["http://www.bigantsoft.com/"], "cvelist": [], "lastseen": "2017-07-02T21:09:10", "viewCount": 2, "enchantments": {"score": {"value": 0.0, "vector": "NONE", "modified": "2017-07-02T21:09:10", "rev": 2}, "dependencies": {"references": [], "modified": "2017-07-02T21:09:10", "rev": 2}, "vulnersScore": 0.0}, "pluginID": "100280", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n# $Id: BigAnt_detect.nasl 6032 2017-04-26 09:02:50Z teissa $\n#\n# BigAnt IM Server Detection\n#\n# Authors:\n# Michael Meyer\n#\n# Copyright:\n# Copyright (c) 2009 Greenbone Networks GmbH\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 version 2\n# (or any later version), as published by the Free Software Foundation.\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\ntag_summary = \"This host is running BigAnt IM Server, a instant messaging solution\nfor enterprise.\";\n\nif (description)\n{\n script_id(100280);\n script_tag(name:\"cvss_base_vector\", value:\"AV:N/AC:L/Au:N/C:N/I:N/A:N\");\n script_version(\"$Revision: 6032 $\");\n script_tag(name:\"last_modification\", value:\"$Date: 2017-04-26 11:02:50 +0200 (Wed, 26 Apr 2017) $\");\n script_tag(name:\"creation_date\", value:\"2009-10-01 18:57:31 +0200 (Thu, 01 Oct 2009)\");\n script_tag(name:\"cvss_base\", value:\"0.0\");\n\n script_name(\"BigAnt IM Server Detection\");\n\n script_category(ACT_GATHER_INFO);\n script_tag(name:\"qod_type\", value:\"remote_banner\");\n script_family(\"Service detection\");\n script_copyright(\"This script is Copyright (C) 2009 Greenbone Networks GmbH\");\n script_dependencies(\"gb_get_http_banner.nasl\");\n script_mandatory_keys(\"AntServer/banner\");\n script_require_ports(\"Services/www\", 6660);\n script_tag(name : \"summary\" , value : tag_summary);\n script_xref(name : \"URL\" , value : \"http://www.bigantsoft.com/\");\n exit(0);\n}\n\ninclude(\"http_func.inc\");\ninclude(\"global_settings.inc\");\ninclude(\"misc_func.inc\");\n\nport = get_http_port(default:6660);\nif(!get_port_state(port))exit(0);\n\nbanner = get_http_banner(port: port);\nif(!banner)exit(0);\n\nif(egrep(pattern:\"AntServer\", string:banner))\n {\n register_service(port:port, ipproto:\"tcp\", proto:\"BigAnt\");\n if(report_verbosity > 0) {\n log_message(port:port);\n }\n }\n\nexit(0);\n\n", "naslFamily": "Service detection", "immutableFields": []}