php
41 lines · 5 steps
Verifying GitHub webhook signatures in Laravel
A Laravel middleware that authenticates incoming GitHub webhooks by recomputing and comparing their HMAC signature.
Explained by
highlit
1<?php
2
3namespace App\Http\Middleware;
4
5use Closure;
6use Illuminate\Http\Request;
7use Illuminate\Support\Facades\Log;
8use Symfony\Component\HttpFoundation\Response;
9
10class VerifyGitHubSignature
11{
12 public function handle(Request $request, Closure $next): Response
13 {
14 $signature = $request->header('X-Hub-Signature-256');
15
16 if (! $signature || ! str_starts_with($signature, 'sha256=')) {
17 Log::warning('GitHub webhook rejected: missing signature', [
18 'delivery' => $request->header('X-GitHub-Delivery'),
19 ]);
20
21 abort(Response::HTTP_UNAUTHORIZED, 'Missing signature.');
22 }
23
24 $expected = 'sha256=' . hash_hmac(
25 'sha256',
26 $request->getContent(),
27 (string) config('services.github.webhook_secret'),
28 );
29
30 if (! hash_equals($expected, $signature)) {
31 Log::warning('GitHub webhook rejected: signature mismatch', [
32 'delivery' => $request->header('X-GitHub-Delivery'),
33 'event' => $request->header('X-GitHub-Event'),
34 ]);
35
36 abort(Response::HTTP_UNAUTHORIZED, 'Invalid signature.');
37 }
38
39 return $next($request);
40 }
41}
01 / 01
STEP 01
‹ swipe to step through ›
Walkthrough
Space play
←→ step
click any line
Three takeaways
- 1Webhook authenticity is proven by recomputing an HMAC over the raw body with a shared secret and comparing it to the sender's header.
- 2Always use a constant-time comparison like hash_equals for secrets to avoid leaking information through timing.
- 3Middleware is the natural place to reject unauthenticated requests before they ever reach your business logic.
Related explainers
php
<?php class NameParser {
Parsing a full name into components in PHP
string-parsing
arrays
normalization
Intermediate
8 steps
php
<?php namespace App\Services\Checkout;
Validating coupons with Laravel's Pipeline
pipeline
chain of responsibility
transactions
Intermediate
7 steps
python
import time import uuid from django.utils.deprecation import MiddlewareMixin
Attaching per-request context in Django
middleware
request lifecycle
multi-tenancy
Intermediate
7 steps
php
<?php namespace App\Services;
How a password strength validator works in PHP
validation
regular-expressions
data-driven
Intermediate
8 steps
php
<?php namespace App\Services;
Building a cached daily leaderboard in Laravel
caching
aggregation
eager-loading
Intermediate
9 steps
php
<?php final class RotatingFileLogger {
How a rotating file logger works in PHP
logging
file-rotation
io
Intermediate
9 steps
Share this explainer
Here's the card — post it anywhere.
Made with highlit — turn any snippet into a walkthrough like this in about a minute.
Explain your code
Embed this explainer
Drop the interactive walkthrough into a blog or docs. Views never cost a credit.
<iframe src="https://highlit.co/explainers/verifying-github-webhook-signatures-in-laravel-explained-php-6d44/embed?autoplay=1" width="100%" height="520" loading="lazy" style="border:0"></iframe>
Autoplay is on by default — add ?autoplay=0 to start paused.