/home/techb158/ileadtechnology.com/SSM/vendor/zendframework/zend-diactoros/src
NameSizeModeActions
Exception/-0755rm
functions/-0755rm
Request/-0755rm
Response/-0755rm
AbstractSerializer.php45920644editdlrm
CallbackStream.php34350644editdlrm
HeaderSecurity.php54680644editdlrm
MessageTrait.php129330644editdlrm
PhpInputStream.php18460644editdlrm
RelativeStream.php38480644editdlrm
Request.php21240644editdlrm
RequestFactory.php6630644editdlrm
RequestTrait.php102010644editdlrm
Response.php60310644editdlrm
ResponseFactory.php7280644editdlrm
ServerRequest.php65960644editdlrm
ServerRequestFactory.php31070644editdlrm
Stream.php82630644editdlrm
StreamFactory.php14890644editdlrm
UploadedFile.php76720644editdlrm
UploadedFileFactory.php10410644editdlrm
Uri.php177580644editdlrm
UriFactory.php6220644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/zendframework/zend-diactoros/src/HeaderSecurity.php (5468B)
254 ) { continue; } $string .= $value[$i]; } return $string; } /** * Validate a header value. * * Per RFC 7230, only VISIBLE ASCII characters, spaces, and horizontal * tabs are allowed in values; header continuations MUST consist of * a single CRLF sequence followed by a space or horizontal tab. * * @param string|int|float $value * @see http://en.wikipedia.org/wiki/HTTP_response_splitting */ public static function isValid($value) : bool { $value = (string) $value; // Look for: // \n not preceded by \r, OR // \r not followed by \n, OR // \r\n not followed by space or horizontal tab; these are all CRLF attacks if (preg_match("#(?:(?:(?