Lucene search
+L

Detect HTTP Traffic sent to SSL/TLS enabled Web Server

🗓️ 03 Nov 2005 00:00:00Reported by Copyright (C) 2005 Michel ArboiType 
openvas
 openvas
🔗 plugins.openvas.org👁 40 Views

Detect HTTP Traffic sent to SSL/TLS enabled Web Server. Script tries to detect SSL/TLS detection issue impeding scan results by correcting the plain HTTP on SSL/TLS port. Other SSL/TLS ports on remote host may be skipped

Code
# SPDX-FileCopyrightText: 2005 Michel Arboi
# 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.15588");
  script_version("2023-08-01T13:29:10+0000");
  script_tag(name:"last_modification", value:"2023-08-01 13:29:10 +0000 (Tue, 01 Aug 2023)");
  script_tag(name:"creation_date", value:"2005-11-03 14:08:04 +0100 (Thu, 03 Nov 2005)");
  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_name("Detect HTTP Traffic sent to SSL/TLS enabled Web Server");
  script_category(ACT_GATHER_INFO);
  script_copyright("Copyright (C) 2005 Michel Arboi");
  script_family("Service detection");
  # nb: Don't add a dependency to "httpver.nasl" as this VT depends on it.
  script_dependencies("find_service.nasl", "global_settings.nasl");
  script_require_ports("Services/www", 443);
  script_exclude_keys("Settings/disable_cgi_scanning");

  script_tag(name:"solution", value:"Enable 'Test SSL based services' in the 'Services' preference setting,
  or increase the timeouts if this option is already set and the plugin missed this port.");

  script_tag(name:"summary", value:"This script tries to detect if there is an SSL/TLS detection issue which
  might impede the scan results.");

  script_tag(name:"insight", value:"The scanner has discovered that it is talking in plain HTTP on a SSL/TLS port
  and has tried to corrected this issue by enabled HTTPS on this port only. However if other SSL/TLS ports are used
  on the remote host, they might be skipped.");

  script_tag(name:"qod_type", value:"remote_banner");

  exit(0);
}

include("host_details.inc");
include("http_func.inc");
include("port_service_func.inc");

# nb: This is a supporting function for some web servers which might do a
# redirect if no Host: header was passed.
function create_http_req( port, httpver ) {

  local_var port, httpver;

  if( httpver == "11" ) {
    host = http_host_name( port:port );
    return string( 'GET / HTTP/1.1\r\nHost: ', host,'\r\n\r\n' );
  } else {
    return string( 'GET / HTTP/1.0\r\n\r\n' );
  }
}

banners = get_kb_list( "FindService/tcp/*/get_http" );

if( COMMAND_LINE ) {

  port = http_get_port( default:443 );
  soc = http_open_socket( port );
  if( ! soc )
    exit( 0 );

  req = create_http_req( port:port, httpver:"10" );
  send( socket:soc, data:req );
  # No http_recv_headers2 here as we want to catch the full HTML source for the check below...
  banner = recv( socket:soc, length:65535 );
  http_close_socket( soc );

  # We want to save the full / correct banner instead of a possible redirect or
  # a HTTP/1.1 400 Bad Request for some Apache HTTP servers if we're sending a HTTP/1.0
  if( ! banner || banner =~ "^HTTP/1\.[01] 30[0-8]" || banner =~ "^HTTP/1\.[01] 400" ) {

    req = create_http_req( port:port, httpver:"11" );
    soc = http_open_socket( port );
    if( soc ) {
      send( socket:soc, data:req );
      _banner = recv( socket:soc, length:65535 );
      http_close_socket( soc );
      # To avoid that we're overwriting the previous banner if something went wrong with the second request.
      if( _banner )
        banner = _banner;
    }
  }
  if( ! banner )
    exit( 0 );

  banners = make_array( port, banner );
}

if( isnull( banners ) )
  exit( 0 );

foreach p( keys( banners ) ) {

  port = ereg_replace( string:p, pattern:".*/([0-9]+)/.*", replace:"\1" );
  port = int( port );
  if( ! port || port <= 0 || port > 65535 )
    continue; # There is something wrong with the port range...

  if( get_port_transport( port ) > ENCAPS_IP )
    continue; # No need to continue below if the transport is already SSL/TLS enabled...

  # If there are several values, get_kb_item will fork and that's bad.
  # However, this only happens when the KB is saved?
  b = banners[p];

  # TODO: Re-Check with other web servers, short test of IIS, Hiawatha, lighttpd, Jetty and GlassFish showed that they don't expose the same info as the other web servers below
  if( b =~ "<!DOCTYPE HTML .*You're speaking plain HTTP to an SSL-enabled server" || # Apache
      ( "Bad Request" >< b && "<pre>This web server is running in SSL mode" >< b ) || "<p>This web server is running in SSL mode. Try the URL" >< b || # Webmin
      "<h2>HTTPS is required</h2>" >< b || "This is an SSL protected page, please use the HTTPS scheme instead of the plain HTTP scheme to access this URL." >< b || # LiteSpeed
      "<title>400 The plain HTTP request was sent to HTTPS port</title>" >< b || "<center>The plain HTTP request was sent to HTTPS port</center>" >< b || # nginx and Server: awselb
      hexstr( b ) =~ "^15030[0-3]0002020a$" || # Tomcat (Plain Tomcat, not JBoss) and Caddy responding with an UNEXPECTED_MESSAGE (0x0A) Alert
      ( ( "Bad Request" >< b || b =~ "^HTTP/1\.[01] 400" ) && "This combination of host and port requires TLS." >< b ) || # Various Java based products / services
      ( b =~ "^HTTP/1\.[01] 400" && "Client sent an HTTP request to an HTTPS server." >< b ) # Unknown web server
    ) {

    log_message( port:port );

    if( COMMAND_LINE ) display( "\n **** SSL/TLS server detected on ", get_host_ip(), ":", port, " ****\n\n" );

    if( service_is_unknown( port:port ) )
      service_register( port:port, proto:"www" );

    for( t = ENCAPS_SSLv2; t < ENCAPS_MAX; t++ ) {

      s = open_sock_tcp( port, transport:t );
      if( ! s )
        continue;

      req = create_http_req( port:port, httpver:"10" );
      send( socket:s, data:req );
      b = http_recv_headers2( socket:s );
      http_close_socket( s );

      # We want to save the full / correct banner instead of a possible redirect
      # or a HTTP/1.1 400 Bad Request for some Apache HTTP servers if we're sending a HTTP/1.0
      if( ! b || b =~ "^HTTP/1\.[01] 30[0-8]" || b =~ "^HTTP/1\.[01] 400" ) {
        s = open_sock_tcp( port, transport:t );
        if( s ) {
          req = create_http_req( port:port, httpver:"11" );
          send( socket:s, data:req );
          _b = http_recv_headers2( socket:s );
          http_close_socket( s );
          if( _b )
            b = _b;
        }
      }

      replace_kb_item( name:"Transports/TCP/" + port, value:t );
      replace_kb_item( name:"Transport/SSL", value:port );
      if( b ) {
        replace_kb_item( name:"FindService/tcp/" + port + "/get_http", value:b );
        if( b =~ "^HTTP/1\.[01] [0-9]+" )
          replace_kb_item( name:"www/banner/" + port + "/", value:b ); # nb: See note in http_get_remote_headers() about the trailing newline.
      }
      break;
    }
  }
}

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

01 Aug 2023 00:00Current
7High risk
Vulners AI Score7
40