Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DrupalKernel.php

function DrupalKernel::validateHostnameLength

Validates a hostname length.

Parameters

string $host: A hostname.

Return value

bool TRUE if the length is appropriate, or FALSE otherwise.

1 call to DrupalKernel::validateHostnameLength()
DrupalKernel::validateHostname in core/lib/Drupal/Core/DrupalKernel.php
Validates the hostname supplied from the HTTP request.

File

core/lib/Drupal/Core/DrupalKernel.php, line 1560

Class

DrupalKernel
The DrupalKernel class is the core of Drupal itself.

Namespace

Drupal\Core

Code

protected static function validateHostnameLength($host) {
    // Limit the length of the host name to 1000 bytes to prevent DoS attacks
    // with long host names.
    return strlen($host) <= 1000 && substr_count($host, '.') <= 100 && substr_count($host, ':') <= 100;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal