Lucene search
+L

SAProuter Detection

🗓️ 27 May 2014 00:00:00Reported by Copyright (C) 2014 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 24 Views

SAProuter Detection script sends a connection request to the server and attempts to extract the version number from the reply

Code
# SPDX-FileCopyrightText: 2014 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.105034");
  script_version("2023-07-25T05:05:58+0000");
  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:"2023-07-25 05:05:58 +0000 (Tue, 25 Jul 2023)");
  script_tag(name:"creation_date", value:"2014-05-27 14:06:45 +0200 (Tue, 27 May 2014)");
  script_name("SAProuter Detection");
  script_category(ACT_GATHER_INFO);
  script_family("Product detection");
  script_copyright("Copyright (C) 2014 Greenbone AG");
  script_dependencies("find_service2.nasl");
  script_require_ports("Services/unknown", 3299);

  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("port_service_func.inc");
include("misc_func.inc");
include("dump.inc");
include("cpe.inc");
include("byte_func.inc");
include("host_details.inc");

port = unknownservice_get_port( default:3299 );

soc = open_sock_tcp( port );
if( ! soc ) exit( 0 );

req = raw_string( 0x00,0x00,0x27,0x29 );

send( socket:soc, data:req );
buf = recv( socket:soc, min:4, length:4 );

if( ! buf || strlen( buf ) < 3 ) {
  close( soc );
  exit( 0 );
}

len = getdword( blob:buf );

if( ! len || int( len ) <= 0 ) {
  close( soc );
  exit( 0 );
}

buf = recv( socket:soc, length:len );

close( soc );

if( ! buf || "SAProuter" >!< buf ) exit( 0 );

set_kb_item( name:"SAProuter/installed", value:TRUE );
service_register( port:port, proto:"SAProuter" );

buf = bin2string( ddata:buf, noprint_replacement:' ' );

vers = 'unknown';
version = eregmatch( pattern:"SAProuter ([0-9.]+( \((SP[0-9]+)\))?) on '", string:buf );

if( ! isnull( version[1] ) ) vers = version[1];
if( ! isnull( version[3] ) ) SP   = version[3];

cpe = build_cpe( value:vers, exp:"^([0-9.]+)", base:"cpe:/a:sap:network_interface_router:" );
if( ! cpe )
  cpe = 'cpe:/a:sap:network_interface_router';
else
  if( SP ) cpe += ':' + tolower( SP );

register_product( cpe:cpe, location:port + '/tcp', port:port );

log_message( data:build_detection_report( app:"SAProuter",
                                          version:vers,
                                          install:port + '/tcp',
                                          cpe:cpe,
                                          concluded:version[0] ),
                                          port:port );

exit( 0 );

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation