Lucene search
+L

Keycloak Detection (HTTP)

🗓️ 17 Nov 2016 00:00:00Reported by Copyright (C) 2016 Greenbone AGType 
openvas
 openvas
🔗 plugins.openvas.org👁 55 Views

The script detects Keycloak by sending a connection request to the server and extracting its version number from the reply

Code
# SPDX-FileCopyrightText: 2016 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.140066");
  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_version("2026-04-02T06:06:11+0000");
  script_tag(name:"last_modification", value:"2026-04-02 06:06:11 +0000 (Thu, 02 Apr 2026)");
  script_tag(name:"creation_date", value:"2016-11-17 10:30:27 +0100 (Thu, 17 Nov 2016)");
  script_name("Keycloak Detection (HTTP)");
  script_category(ACT_GATHER_INFO);
  script_family("Product detection");
  script_copyright("Copyright (C) 2016 Greenbone AG");
  script_dependencies("find_service.nasl", "httpver.nasl", "global_settings.nasl");
  script_require_ports("Services/www", 80);
  script_exclude_keys("Settings/disable_cgi_scanning");

  script_tag(name:"summary", value:"HTTP based detection of Keycloak.");

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

  exit(0);
}

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

port = http_get_port( default:80 );

detection_patterns = make_list(

  # <title>Welcome to Keycloak</title>
  "<title>Welcome to Keycloak</title>",

  # <h1>Welcome to <strong>Keycloak</strong></h1>
  "<h[0-9]>Welcome to <strong>Keycloak</strong></h[0-9]>",

  # <h1>Welcome to Red Hat Single Sign-On</h1>
  "<h[0-9]>Welcome to Red Hat Single Sign-On</h[0-9]>",

  # <h1>Welcome to Keycloak</h1>
  "<h[0-9]>Welcome to Keycloak</h[0-9]>",

  # <title>Welcome to Red Hat Single Sign-On</title>
  "<title>Welcome to Red Hat Single Sign-On</title>",

  # <h1>Welcome to <strong>Red Hat Single Sign-On</strong></h1>
  "<h[0-9]>Welcome to <strong>Red Hat Single Sign-On</strong></h[0-9]>",

  # <title>Welcome to Red Hat build of Keycloak</title>
  "<title>Welcome to Red Hat build of Keycloak</title>",

  # <h1>Welcome to <strong>Red Hat build of Keycloak</strong></h1>
  "<h[0-9]>Welcome to <strong>Red Hat build of Keycloak</strong></h[0-9]>",

  # <h3><a href="admin/"><img src="welcome-content/user.png">Administration Console <i class="fa fa-angle-right link" aria-hidden="true"></i></a></h3>
  # <p><a href="http://www.keycloak.org/docs">Documentation</a> | <a href="admin/">Administration Console</a> </p>
  ">Administration Console[^<]*<",

  # <div class="description">
  #   Centrally manage all aspects of the Keycloak server
  # </div>
  # or:
  #   Centrally manage all aspects of the Red Hat Single Sign-On server
  # or:
  #   Centrally manage all aspects of the Red Hat build of Keycloak server
  "Centrally manage all aspects of the (Keycloak|Red Hat Single Sign-On|Red Hat build of Keycloak) server"
);

# nb: Try both /auth/ (older versions) and / (newer versions)
urls = make_list( "/auth/", "/" );

found = 0;
concluded = ""; # nb: To make openvas-nasl-lint happy...
detection_url = "";

foreach url( urls ) {

  buf = http_get_cache( item:url, port:port );
  if( ! buf )
    continue;

  foreach pattern( detection_patterns ) {

    concl = egrep( string:buf, pattern:pattern, icase:FALSE );
    if( concl ) {
      if( concluded )
        concluded += '\n';

      # nb: Minor formatting change for the reporting.
      concl = chomp( concl );
      concl = ereg_replace( string:concl, pattern:"^(\s+)", replace:"" );
      concluded += "    " + concl;
      found++;
    }
  }

  if( found > 1 ) {
    detection_url = url;
    break;
  }
}

if( found > 1 ) {

  install = "/";
  version = "unknown";
  rep_version = "unknown";
  conclurl = "  " + http_report_vuln_url( port:port, url:detection_url, url_only:TRUE );

  # nb:
  # - Check if this is Red Hat Build of Keycloak
  # - Check the last fetched buffer from detection loop
  is_rhbk = FALSE;
  if( "Red Hat Single Sign-On" >< buf || "Red Hat build of Keycloak" >< buf ) {
    is_rhbk = TRUE;
    set_kb_item( name:"redhat/build_of_keycloak/detected", value:TRUE );
    set_kb_item( name:"redhat/build_of_keycloak/http/detected", value:TRUE );
  } else {
    set_kb_item( name:"keycloak/upstream/detected", value:TRUE );
    set_kb_item( name:"keycloak/upstream/http/detected", value:TRUE );
  }

  set_kb_item( name:"keycloak/detected", value:TRUE );
  set_kb_item( name:"keycloak/http/detected", value:TRUE );

  kb_concluded = '\n  Protocol:';
  kb_concluded += '\n    HTTP(S) on port ' + port + '/tcp\n';
  kb_concluded += '\n  Version/product identification:';

  # nb: Try version detection on different paths for different Keycloak versions
  version_urls = make_list(
    "/auth/admin/master/console/",  # Older versions with /auth/ context
    "/admin/master/console/"         # Newer versions without /auth/
  );

  foreach url( version_urls ) {
    ver_buf = http_get_cache( item:url, port:port );
    if( ! ver_buf )
      continue;

    # e.g.:
    # <script src="http://localhost:8080/auth/resources/2.3.0.final/admin/keycloak/lib/angular/angular.js"></script>
    # <script src="/auth/resources/3.4.1.final/admin/keycloak/node_modules/angular/angular.min.js"></script>
    # <script src="/auth/resources/4.8.3.final/admin/keycloak/node_modules/jquery/dist/jquery.min.js" type="text/javascript"></script>
    # <script src="/auth/resources/6.0.1/admin/keycloak/node_modules/jquery/dist/jquery.min.js" type="text/javascript"></script>
    # <script src="/auth/resources/7.0.1/admin/keycloak/node_modules/angular/angular.min.js"></script>
    #
    # newer versions just have something like e.g. this:
    #
    # <script src="/auth/resources/ady3m/common/keycloak/node_modules/jquery/dist/jquery.min.js" type="text/javascript"></script>
    #
    # or:
    #
    # <script type="module" crossorigin src="/resources/0ktxb/admin/keycloak.v2/assets/index-f33eb656.js"></script>
    vers_nd_type = eregmatch( pattern:"/auth/resources/([0-9.]+)\.([a-z]+[^/]+)/admin/", string:ver_buf );

    if( isnull( vers_nd_type[1] ) ) {
      # nb:
      # - We need to make this a little bit more strict to not match something "wrongly"
      # - It seems never versions doesn't have the strings like ".final"
      # - Don't add a second matching group here without verifying that it is correctly handled for
      #   the "type" reporting below
      vers_nd_type = eregmatch( pattern:"/auth/resources/([0-9]+\.[0-9]+\.[0-9.]+)/admin/", string:ver_buf );
    }

    if( ! isnull( vers_nd_type[1] ) ) {
      conclurl += '\n  ' + http_report_vuln_url( port:port, url:url, url_only:TRUE );
      version = vers_nd_type[1];
      rep_version = version;
      concluded += '\n    ' + vers_nd_type[0];

      if( ! isnull( vers_nd_type[2] ) ) {
        set_kb_item( name:"keycloak/release_type", value:vers_nd_type[2] );
        rep_version += " (" + vers_nd_type[2] + ")";
      }
      break;
    }
  }

  kb_concluded += '\n' + concluded;

  # Store in KB items for consolidation
  if( is_rhbk ) {
    set_kb_item( name:"redhat/build_of_keycloak/http/" + port + "/installs",
                 value:port + "#---#" + install + "#---#" + rep_version + "#---#" + kb_concluded + "#---#" + conclurl );
  } else {
    set_kb_item( name:"keycloak/upstream/http/" + port + "/installs",
                 value:port + "#---#" + install + "#---#" + rep_version + "#---#" + kb_concluded + "#---#" + conclurl );
  }
}

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

02 Apr 2026 00:00Current
5.8Medium risk
Vulners AI Score5.8
55