Generic Bearer Token (Authorization Header) Regex for PHP
/^Bearer\s+([A-Za-z0-9\-._~+/]+=*)$/iWhat this pattern does
This page provides a well-structured, multi-part regular expression for matching generic bearer token (authorization header), ported and verified for PHP. In security-sensitive code, using an unverified regex can open the door to both false positives and denial-of-service attacks. The snippet below is ready to drop into your PHP project — whether you're validating in a Laravel validator, a WordPress plugin, or a standalone PHP script.
Php Implementation
<?php
// Generic Bearer Token (Authorization Header)
// ReDoS-safe | RegexVault — Security > API Keys & Tokens
define('GENERIC_BEARER_TOKEN_AUTHORIZATION_HEADER_PATTERN', '/^Bearer\s+([A-Za-z0-9\-._~+\/]+=*)$/');
function validate_generic_bearer_token_authorization_header(string $input): bool {
return (bool) preg_match(GENERIC_BEARER_TOKEN_AUTHORIZATION_HEADER_PATTERN, $input);
}
// Example
var_dump(validate_generic_bearer_token_authorization_header("Bearer eyJhbGciOiJSUzI1NiJ9.abc.def")); // bool(true)Test Cases
Matches (Valid) | Rejects (Invalid) |
|---|---|
Bearer eyJhbGciOiJSUzI1NiJ9.abc.def | bearer |
Bearer abc123 | Token abc123 |
Bearer some+token/here= | Bearer |
| — | Bearer abc def |
When to use this pattern
This pattern is drawn from the Security > API Keys & Tokens category and carries a ReDoS-safe certification. That matters for PHP developers because especially relevant in PHP where PCRE backtracking limits can trigger silent failures on malicious input. RegexVault audits patterns against known backtracking attack vectors, ensuring you have the necessary context before using this regex in a high-stakes production environment.
Common Pitfalls
Tokens with spaces are invalid — split at the first space to separate scheme from token. Log scrubbing should replace the token value with [REDACTED] before writing to any log.
Technical Notes
RFC 6750 Bearer token format. The token itself is an opaque string — not validated structurally here. The character set covers base64url, standard base64, and common token formats. Use downstream pattern to validate the token type (JWT, opaque, etc.).
Have a pattern that belongs in the vault?
Submit it for review — community-verified patterns get credited to your GitHub handle. Free submissions join the queue. Priority review available for $15.
Submit a Pattern