Lucene search
K

ASG-Sentry SNMP Agent Detection

🗓️ 14 Oct 2008 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 22 Views

ASG-Sentry SNMP Agent Detectio

Refs
Code
SourceLink
nessuswww.nessus.org/u
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
  script_id(34396);
  script_version("1.13");
  script_cvs_date("Date: 2019/11/22");

  script_name(english:"ASG-Sentry SNMP Agent Detection");
  script_summary(english:"Sends an SNMP request");

 script_set_attribute(attribute:"synopsis", value:
"An SNMP agent is listening on the remote host." );
 script_set_attribute(attribute:"description", value:
"The remote SNMP agent is part of ASG-Sentry, a web-based SNMP network
management system." );
 # http://web.archive.org/web/20081217021017/http://www.asg.com/products/product_details.asp?code=SNM&id=96
 script_set_attribute(attribute:"see_also", value:"http://www.nessus.org/u?0da8508b" );
 script_set_attribute(attribute:"solution", value:
"Filter incoming traffic to this port if desired." );
 script_set_attribute(attribute:"risk_factor", value:"None" );
 script_set_attribute(attribute:"plugin_publication_date", value: "2008/10/14");
 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_set_attribute(attribute:"cpe", value:"cpe:/a:asg-sentry:asg-sentry");
 script_set_attribute(attribute:"asset_inventory", value:"True");
 script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"SNMP");
  script_copyright(english:"This script is Copyright (C) 2008-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
  exit(0);
}


include("global_settings.inc");
include("misc_func.inc");
include("snmp_func.inc");


foreach port (make_list(6161, 8161))
{
  if (! service_is_unknown(port:port, ipproto:"udp")) continue;
  if (! get_udp_port_state(port)) continue;

  soc = open_sock_udp(port);
  if (!soc) continue;

  # Protect against the fact that this host may be configured for SNMPv3 auth.
  set_snmp_version( version:1 );

  # Look for evidence of ASG-Sentry
  community = "public";
  desc = snmp_request(
    socket:soc,
    community:community,
    oid:"1.3.6.1.2.1.1.1.0"
  );
  if (desc && "ASG-Sentry" >< desc)
  {
    register_service(port:port, ipproto:"udp", proto:"snmp");
    set_kb_item(name:"SNMP/"+port+"/ASG_Sentry/sysDesc", value:desc);

    if (report_verbosity)
    {
      info = '  sysDescr    : ' + desc + '\n';

      # Collect some additional info for a report.
      res = snmp_request(
        socket:soc,
        community:community,
        oid:"1.3.6.1.2.1.1.2.0"
      );
      if (res) info += '  sysObjectID : ' + res + '\n';

      res = snmp_request(
        socket:soc,
        community:community,
        oid:"1.3.6.1.2.1.1.3.0"
      );
      if (res) info += '  sysUptime   : ' + res + '\n';

      res = snmp_request(
        socket:soc,
        community:community,
        oid:"1.3.6.1.2.1.1.4.0"
      );
      if (res) info += '  sysContact  : ' + res + '\n';

      res = snmp_request(
        socket:soc,
        community:community,
        oid:"1.3.6.1.2.1.1.5.0"
      );
      if (res) info += '  sysName     : ' + res + '\n';

      res = snmp_request(
        socket:soc,
        community:community,
        oid:"1.3.6.1.2.1.1.6.0"
      );
      if (res) info += '  sysLocation : ' + res + '\n';

      res = snmp_request(
        socket:soc,
        community:community,
        oid:"1.3.6.1.2.1.1.7.0"
      );
      if (res) info += '  sysServices : ' + res + '\n';

      report = string(
        "\n",
        "Here is some information collected from the remote agent :\n",
        "\n",
        info
      );
      security_note(port:port, proto:"udp", extra:report);
    }
    else security_note(port:port, proto:"udp");
  }
  # We're done with actual sends, so set the SNMP_VERSION back, if needed.
  reset_snmp_version();
}

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

22 Nov 2019 00:00Current
5.5Medium risk
Vulners AI Score5.5
22