Lucene search
K

A-A-S Application Access Server Detection

🗓️ 14 May 2009 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 51 Views

A-A-S Application Access Server running on port 6262 for remotely managing Windows hos

Refs
Code
#
# (C) Tenable Network Security, Inc.
#


include("compat.inc");


if (description)
{
  script_id(38760);
  script_version("1.8");

  script_name(english:"A-A-S Application Access Server Detection");
  script_summary(english:"Looks at the server's initial banner");

  script_set_attribute(attribute:"synopsis", value:
      "The remote web server is used for remote control of a Windows host."
  );
  script_set_attribute(attribute:"description", value:
"A-A-S Application Access Server, a web-based tool for remotely
managing a Windows host, is running on this port according to its
banner."
  );
  script_set_attribute(
    attribute:"see_also", 
    value:"http://www.klinzmann.name/a-a-s/index_en.html"
  );
  script_set_attribute(attribute:"solution", value:
"Ensure that use of the program agrees with the organization's
acceptable use and security policies.

If so, consider filtering incoming traffic to this port."
  );
  script_set_attribute(
    attribute:"risk_factor", 
    value:"None"
  );
 script_set_attribute(attribute:"plugin_publication_date", value: "2009/05/14");
 script_cvs_date("Date: 2019/11/22");
  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:gisle_aas:digest-md5");
  script_set_attribute(attribute:"asset_inventory", value:"True");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"Web Servers");

  script_copyright(english:"This script is Copyright (C) 2009-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");

  script_dependencies("http_version.nasl");
  script_require_ports("Services/www", 6262);

  exit(0);
}


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


port = get_http_port(default:6262, embedded: 0);


 # Check the server's banner.
banner = get_http_banner(port:port);
if (!banner || "Server:" >!< banner)
 exit(0, "No Server HTTP header on port "+port+".");

server = strstr(banner, "Server:");
server = server - strstr(server, '\r\n');

if (
  "Server: AAS/" >< server &&
  'Basic realm="Access for AAS"' >< banner
)
{
  set_kb_item(name:string("www/", port, "/aas"), value:TRUE);

  if (report_verbosity > 0)
  {
    version = strstr(server, "AAS/") - "AAS/";
    report = string(
      "\n",
      "AAS version ", version, " appears to be running on the remote host based\n",
      "on the following Server response header :\n",
      "\n",
      "  ", server, "\n"
    );
    security_note(port:port, extra:report);
  }
  else security_note(port);
}

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
51