mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-06-05 01:15:36 +00:00
3a8775fa52
- ✅ Implemented handling for `CorruptComponentPayloadException` to prevent logging noise and improve exception management. - 🛠️ Added IP-based throttling (120 requests/min) for the `/livewire/update` endpoint with middleware integration for better traffic control. - ✅ Introduced unit tests to validate throttle settings and middleware application. - 🧪 Enhanced tests for ensuring silent handling of corrupt payload scenarios and reduced log noise.
137 lines
4.9 KiB
PHP
137 lines
4.9 KiB
PHP
<?php
|
|
|
|
use App\Http\Middleware\DomainMiddleware;
|
|
use App\Http\Middleware\SetTimezone;
|
|
use Illuminate\Contracts\Filesystem\FileNotFoundException;
|
|
use Illuminate\Foundation\Application;
|
|
use Illuminate\Foundation\Configuration\Exceptions;
|
|
use Illuminate\Foundation\Configuration\Middleware;
|
|
use Illuminate\Http\Request;
|
|
use Livewire\Exceptions\MethodNotFoundException;
|
|
use Livewire\Features\SupportFileUploads\MissingFileUploadsTraitException;
|
|
use Livewire\Features\SupportLifecycleHooks\DirectlyCallingLifecycleHooksNotAllowedException;
|
|
use Livewire\Mechanisms\HandleComponents\CorruptComponentPayloadException;
|
|
use Stefro\LaravelLangCountry\Middleware\LangCountrySession;
|
|
|
|
return Application::configure(basePath: dirname(__DIR__))
|
|
->withRouting(
|
|
web: __DIR__.'/../routes/web.php',
|
|
api: __DIR__.'/../routes/api.php',
|
|
commands: __DIR__.'/../routes/console.php',
|
|
health: '/up',
|
|
)
|
|
->withMiddleware(function (Middleware $middleware) {
|
|
$middleware->trustProxies(at: '*');
|
|
|
|
$middleware->web(append: [
|
|
DomainMiddleware::class,
|
|
LangCountrySession::class,
|
|
SetTimezone::class,
|
|
]);
|
|
})
|
|
->withExceptions(function (Exceptions $exceptions) {
|
|
$isStaleLivewireAsset = function (Throwable $e, ?Request $request): bool {
|
|
if (! $request instanceof Request) {
|
|
return false;
|
|
}
|
|
|
|
if (! preg_match('#^livewire-[a-f0-9]+/(?:css|js)/#', $request->path())) {
|
|
return false;
|
|
}
|
|
|
|
$stalePatterns = [
|
|
'does not have a style source',
|
|
'does not have a global style source',
|
|
'does not have a script source',
|
|
'Style file not found',
|
|
'Global style file not found',
|
|
'Script file not found',
|
|
];
|
|
|
|
foreach ($stalePatterns as $pattern) {
|
|
if (str_contains($e->getMessage(), $pattern)) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
$isStaleCompiledView = function (Throwable $e): bool {
|
|
if (! $e instanceof FileNotFoundException) {
|
|
return false;
|
|
}
|
|
|
|
return str_contains($e->getMessage(), '/storage/framework/views/');
|
|
};
|
|
|
|
$isMissingFileUploadsTrait = function (Throwable $e): bool {
|
|
return $e instanceof MissingFileUploadsTraitException;
|
|
};
|
|
|
|
$isLivewireExploitProbe = function (Throwable $e): bool {
|
|
// Deserialization/RCE bots probe the `livewire/update` endpoint by invoking
|
|
// protected lifecycle hooks or PHP magic methods to reach gadget chains.
|
|
// Livewire safely rejects these calls; the rejection is the bot signature,
|
|
// so we silence the resulting noise instead of reporting it as a 500.
|
|
if ($e instanceof DirectlyCallingLifecycleHooksNotAllowedException) {
|
|
return true;
|
|
}
|
|
|
|
if ($e instanceof MethodNotFoundException) {
|
|
return (bool) preg_match('/Public method \[__/', $e->getMessage());
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
$exceptions->report(function (Throwable $e) use ($isStaleLivewireAsset, $isStaleCompiledView, $isMissingFileUploadsTrait, $isLivewireExploitProbe) {
|
|
if ($isStaleLivewireAsset($e, request())) {
|
|
return false;
|
|
}
|
|
|
|
if ($isStaleCompiledView($e)) {
|
|
return false;
|
|
}
|
|
|
|
if ($isMissingFileUploadsTrait($e)) {
|
|
return false;
|
|
}
|
|
|
|
if ($isLivewireExploitProbe($e)) {
|
|
return false;
|
|
}
|
|
|
|
// Bots replay `/livewire/update` with a mutated snapshot whose HMAC
|
|
// checksum no longer matches its [name, id, data]. Checksum::verify()
|
|
// rejects these, so the rejection is the tamper signature, not an app
|
|
// fault — we silence the report noise. Rendering is left untouched:
|
|
// the exception already returns a native 419 on its own.
|
|
if ($e instanceof CorruptComponentPayloadException) {
|
|
return false;
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
$exceptions->render(function (Throwable $e, Request $request) use ($isStaleLivewireAsset, $isStaleCompiledView, $isMissingFileUploadsTrait, $isLivewireExploitProbe) {
|
|
if ($isStaleLivewireAsset($e, $request)) {
|
|
return response('', 404);
|
|
}
|
|
|
|
if ($isStaleCompiledView($e)) {
|
|
return response('', 503)->header('Retry-After', '5');
|
|
}
|
|
|
|
if ($isMissingFileUploadsTrait($e)) {
|
|
return response('', 400);
|
|
}
|
|
|
|
if ($isLivewireExploitProbe($e)) {
|
|
return response('', 400);
|
|
}
|
|
|
|
return null;
|
|
});
|
|
})->create();
|