ID OPENVAS:1361412562310105153 Type openvas Reporter Copyright (C) 2014 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
#
# Allegro RomPager Detection
#
# Authors:
# Michael Meyer <michael.meyer@greenbone.net>
#
# Copyright:
# Copyright (C) 2014 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.105153");
script_version("2020-08-24T15:18:35+0000");
script_name("Allegro RomPager Detection");
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_tag(name:"last_modification", value:"2020-08-24 15:18:35 +0000 (Mon, 24 Aug 2020)");
script_tag(name:"creation_date", value:"2014-12-23 10:00:24 +0100 (Tue, 23 Dec 2014)");
script_category(ACT_GATHER_INFO);
script_family("Product detection");
script_copyright("Copyright (C) 2014 Greenbone Networks GmbH");
script_dependencies("gb_get_http_banner.nasl");
script_mandatory_keys("Allegro/banner");
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);
}
CPE = "cpe:/a:allegrosoft:rompager:";
include("cpe.inc");
include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");
include("host_details.inc");
port = http_get_port( default:80 );
url = "/Allegro";
req = http_get( item:url, port:port );
buf = http_keepalive_send_recv( port:port, data:req, bodyonly:FALSE );
if( "RomPager Advanced Version" >!< buf && buf !~ "Server: *(Allegro-Software-)?RomPager" )
exit( 0 );
set_kb_item( name:"allegro/rompager/detected", value:TRUE );
version = "unknown";
vers = eregmatch( string:buf, pattern:"RomPager/([0-9][0-9a-z.]+)" );
if( isnull( vers[1] ) )
vers = eregmatch( string:buf, pattern:"RomPager Advanced Version ([0-9.]+)" );
if( ! isnull( version[1] ) )
version = chomp( vers[1] );
register_and_report_cpe( app:"Allegro RomPager",
ver:version,
concluded:ver[0],
base:CPE,
expr:"([0-9.]+)([0-9a-z.-]+)?",
insloc:port + "/tcp",
regPort:port,
regService:"www" );
exit( 0 );
{"id": "OPENVAS:1361412562310105153", "type": "openvas", "bulletinFamily": "scanner", "title": "Allegro RomPager Detection", "description": "The script sends a connection request to the server\n and attempts to extract the version number from the reply.", "published": "2014-12-23T00:00:00", "modified": "2020-08-24T00:00:00", "cvss": {"score": 0.0, "vector": "NONE"}, "href": "http://plugins.openvas.org/nasl.php?oid=1361412562310105153", "reporter": "Copyright (C) 2014 Greenbone Networks GmbH", "references": [], "cvelist": [], "lastseen": "2020-10-04T15:17:29", "viewCount": 6, "enchantments": {"dependencies": {"references": [], "modified": "2020-10-04T15:17:29", "rev": 2}, "score": {"value": 0.1, "vector": "NONE", "modified": "2020-10-04T15:17:29", "rev": 2}, "vulnersScore": 0.1}, "pluginID": "1361412562310105153", "sourceData": "###############################################################################\n# OpenVAS Vulnerability Test\n#\n# Allegro RomPager Detection\n#\n# Authors:\n# Michael Meyer <michael.meyer@greenbone.net>\n#\n# Copyright:\n# Copyright (C) 2014 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.105153\");\n script_version(\"2020-08-24T15:18:35+0000\");\n script_name(\"Allegro RomPager Detection\");\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_tag(name:\"last_modification\", value:\"2020-08-24 15:18:35 +0000 (Mon, 24 Aug 2020)\");\n script_tag(name:\"creation_date\", value:\"2014-12-23 10:00:24 +0100 (Tue, 23 Dec 2014)\");\n script_category(ACT_GATHER_INFO);\n script_family(\"Product detection\");\n script_copyright(\"Copyright (C) 2014 Greenbone Networks GmbH\");\n script_dependencies(\"gb_get_http_banner.nasl\");\n script_mandatory_keys(\"Allegro/banner\");\n\n script_tag(name:\"summary\", value:\"The script sends a connection request to the server\n 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\nCPE = \"cpe:/a:allegrosoft:rompager:\";\n\ninclude(\"cpe.inc\");\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\nurl = \"/Allegro\";\nreq = http_get( item:url, port:port );\nbuf = http_keepalive_send_recv( port:port, data:req, bodyonly:FALSE );\n\nif( \"RomPager Advanced Version\" >!< buf && buf !~ \"Server: *(Allegro-Software-)?RomPager\" )\n exit( 0 );\n\nset_kb_item( name:\"allegro/rompager/detected\", value:TRUE );\n\nversion = \"unknown\";\nvers = eregmatch( string:buf, pattern:\"RomPager/([0-9][0-9a-z.]+)\" );\nif( isnull( vers[1] ) )\n vers = eregmatch( string:buf, pattern:\"RomPager Advanced Version ([0-9.]+)\" );\n\nif( ! isnull( version[1] ) )\n version = chomp( vers[1] );\n\nregister_and_report_cpe( app:\"Allegro RomPager\",\n ver:version,\n concluded:ver[0],\n base:CPE,\n expr:\"([0-9.]+)([0-9a-z.-]+)?\",\n insloc:port + \"/tcp\",\n regPort:port,\n regService:\"www\" );\n\nexit( 0 );\n", "naslFamily": "Product detection"}