Lucene search
K

Appweb HTTP Server Version

🗓️ 02 Aug 2012 00:00:00Reported by TenableType 
nessus
 nessus
🔗 www.tenable.com👁 54 Views

Obtains the version of the remote Appweb HTTP Server. The remote host is running the Appweb HTTP Server, an open source web server. It was possible to read its version number from the banner. Note that 'Embedthis' used to be known as 'Mbedthis' and 'Appweb' used to be known as 'AppWeb'

Refs
Code
SourceLink
embedthiswww.embedthis.com/
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
  script_id(61395);
  script_version("1.6");
  script_set_attribute(attribute:"plugin_modification_date", value:"2020/06/12");
  
  script_name(english:"Appweb HTTP Server Version");
  script_summary(english:"Obtains the version of the remote Appweb HTTP Server");

  script_set_attribute(attribute:"synopsis", value:
"It is possible to obtain the version number of the remote Appweb HTTP
server.");
  script_set_attribute(attribute:"description", value:
"The remote host is running the Appweb HTTP Server, an open source web
server.  It was possible to read its version number from the banner. 

Note that 'Embedthis' used to be known as 'Mbedthis' and 'Appweb' used
to be known as 'AppWeb'.");
  script_set_attribute(attribute:"see_also", value:"https://www.embedthis.com/");
  script_set_attribute(attribute:"solution", value:"n/a");
  script_set_attribute(attribute:"risk_factor", value:"None");
 
  script_set_attribute(attribute:"plugin_publication_date", value:"2012/08/02");

  script_set_attribute(attribute:"cpe", value:"cpe:/a:mbedthis_software:mbedthis_appweb_http_server");
  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"asset_inventory", value:"True");
  script_end_attributes();
 
  script_category(ACT_GATHER_INFO);
  script_copyright(english:"This script is Copyright (C) 2012-2020 and is owned by Tenable, Inc. or an Affiliate thereof.");
  script_family(english:"Web Servers");

  script_dependencies("http_version.nasl");
  script_require_ports(80, 7777, "Services/www");
  exit(0);
}


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

port = get_http_port(default:80);

server_header = http_server_header(port:port);
if (isnull(server_header)) exit(0, "The web server listening on port "+port+" does not return a Server response header.");

server_header = chomp(server_header);

if (
  ("-appweb" >!< tolower(server_header)) &&
  ("embedthis-" >!< tolower(server_header))
) audit(AUDIT_WRONG_WEB_SERVER, port, "Appweb");

set_kb_item(name:"www/"+port+"/appweb", value:TRUE);

matches = eregmatch(
  pattern : "^(Mbedthis-AppWeb|Embedthis-Appweb|Embedthis-http)\/([^ ]+)",
  string  : server_header,
  icase   : TRUE
);
if (isnull(matches)) audit(AUDIT_UNKNOWN_WEB_SERVER_VER, "Appweb", port);

version = matches[2];
set_kb_item(name:"www/appweb/"+port+"/version", value:version);
set_kb_item(name:"www/appweb/"+port+"/source", value:server_header);

if (report_verbosity > 0)
{
  report =
    '\n  Version source    : ' + server_header + 
    '\n  Installed version : ' + version +
    '\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

12 Jun 2020 00:00Current
5.6Medium risk
Vulners AI Score5.6
54