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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/main_file/vendor/laravel/framework/src/Illuminate/Http/Client/Concerns/   drwxr-xr-x
Free 13.07 GB of 57.97 GB (22.54%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Http\Client\Concerns;

trait 
DeterminesStatusCode
{
    
/**
     * Determine if the response code was 200 "OK" response.
     *
     * @return bool
     */
    
public function ok()
    {
        return 
$this->status() === 200;
    }

    
/**
     * Determine if the response code was 201 "Created" response.
     *
     * @return bool
     */
    
public function created()
    {
        return 
$this->status() === 201;
    }

    
/**
     * Determine if the response code was 202 "Accepted" response.
     *
     * @return bool
     */
    
public function accepted()
    {
        return 
$this->status() === 202;
    }

    
/**
     * Determine if the response code was the given status code and the body has no content.
     *
     * @param  int  $status
     * @return bool
     */
    
public function noContent($status 204)
    {
        return 
$this->status() === $status && $this->body() === '';
    }

    
/**
     * Determine if the response code was a 301 "Moved Permanently".
     *
     * @return bool
     */
    
public function movedPermanently()
    {
        return 
$this->status() === 301;
    }

    
/**
     * Determine if the response code was a 302 "Found" response.
     *
     * @return bool
     */
    
public function found()
    {
        return 
$this->status() === 302;
    }

    
/**
     * Determine if the response was a 400 "Bad Request" response.
     *
     * @return bool
     */
    
public function badRequest()
    {
        return 
$this->status() === 400;
    }

    
/**
     * Determine if the response was a 401 "Unauthorized" response.
     *
     * @return bool
     */
    
public function unauthorized()
    {
        return 
$this->status() === 401;
    }

    
/**
     * Determine if the response was a 402 "Payment Required" response.
     *
     * @return bool
     */
    
public function paymentRequired()
    {
        return 
$this->status() === 402;
    }

    
/**
     * Determine if the response was a 403 "Forbidden" response.
     *
     * @return bool
     */
    
public function forbidden()
    {
        return 
$this->status() === 403;
    }

    
/**
     * Determine if the response was a 404 "Not Found" response.
     *
     * @return bool
     */
    
public function notFound()
    {
        return 
$this->status() === 404;
    }

    
/**
     * Determine if the response was a 408 "Request Timeout" response.
     *
     * @return bool
     */
    
public function requestTimeout()
    {
        return 
$this->status() === 408;
    }

    
/**
     * Determine if the response was a 409 "Conflict" response.
     *
     * @return bool
     */
    
public function conflict()
    {
        return 
$this->status() === 409;
    }

    
/**
     * Determine if the response was a 422 "Unprocessable Entity" response.
     *
     * @return bool
     */
    
public function unprocessableEntity()
    {
        return 
$this->status() === 422;
    }

    
/**
     * Determine if the response was a 429 "Too Many Requests" response.
     *
     * @return bool
     */
    
public function tooManyRequests()
    {
        return 
$this->status() === 429;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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