1<?php 2 3namespace Pterodactyl\Http\Middleware; 4 5use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier; 6 7class VerifyCsrfToken extends BaseVerifier 8{ 9 /** 10 * The URIs that should be excluded from CSRF verification. These are 11 * never hit by the front-end, and require specific token validation 12 * to work. 13 */ 14 protected $except = ['remote/*', 'daemon/*']; 15} 16 17