!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/laravel-crm/vendor/pestphp/pest-plugin-laravel/src/   drwxrwxrwx
Free 13.13 GB of 57.97 GB (22.65%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Pest\Laravel;

use 
Illuminate\Foundation\Testing\TestCase;
use 
Illuminate\Testing\TestResponse;

/**
 * Define additional headers to be sent with the request.
 *
 * @return TestCase
 */
function withHeaders(array $headers)
{
    return 
test()->withHeaders(...func_get_args());
}

/**
 * Add a header to be sent with the request.
 *
 * @return TestCase
 */
function withHeader(string $namestring $value)
{
    return 
test()->withHeader(...func_get_args());
}

/**
 *  Add an authorization token for the request.
 *
 * @return TestCase
 */
function withToken(string $tokenstring $type 'Bearer')
{
    return 
test()->withToken(...func_get_args());
}

/**
 * Add a basic authentication header to the request with the given credentials.
 *
 * @return TestCase
 */
function withBasicAuth(string $usernamestring $password)
{
    return 
test()->withBasicAuth(...func_get_args());
}

/**
 *  Remove the authorization token from the request.
 *
 * @return TestCase
 */
function withoutToken()
{
    return 
test()->withoutToken();
}

/**
 * Flush all the configured headers.
 *
 * @return TestCase
 */
function flushHeaders()
{
    return 
test()->flushHeaders(...func_get_args());
}

/**
 * Define a set of server variables to be sent with the requests.
 *
 * @return TestCase
 */
function withServerVariables(array $server)
{
    return 
test()->withServerVariables(...func_get_args());
}

/**
 * Disable middleware for the test.
 *
 * @param  string|array|null  $middleware
 * @return TestCase
 */
function withoutMiddleware($middleware null)
{
    return 
test()->withoutMiddleware(...func_get_args());
}

/**
 * Enable the given middleware for the test.
 *
 * @param  string|array|null  $middleware
 * @return TestCase
 */
function withMiddleware($middleware null)
{
    return 
test()->withMiddleware(...func_get_args());
}

/**
 * Define additional cookies to be sent with the request.
 *
 * @return TestCase
 */
function withCookies(array $cookies)
{
    return 
test()->withCookies(...func_get_args());
}

/**
 * Add a cookie to be sent with the request.
 *
 * @return TestCase
 */
function withCookie(string $namestring $value)
{
    return 
test()->withCookie(...func_get_args());
}

/**
 * Define additional cookies will not be encrypted before sending with the request.
 *
 * @return TestCase
 */
function withUnencryptedCookies(array $cookies)
{
    return 
test()->withUnencryptedCookies(...func_get_args());
}

/**
 * Add a cookie will not be encrypted before sending with the request.
 *
 * @return TestCase
 */
function withUnencryptedCookie(string $namestring $value)
{
    return 
test()->withUnencryptedCookie(...func_get_args());
}

/**
 * Automatically follow any redirects returned from the response.
 *
 * @return TestCase
 */
function followingRedirects()
{
    return 
test()->followingRedirects(...func_get_args());
}

/**
 * Include cookies and authorization headers for JSON requests.
 *
 * @return TestCase
 */
function withCredentials()
{
    return 
test()->withCredentials(...func_get_args());
}

/**
 * Disable automatic encryption of cookie values.
 *
 * @return TestCase
 */
function disableCookieEncryption()
{
    return 
test()->disableCookieEncryption(...func_get_args());
}

/**
 * Set the referer header and previous URL session value in order to simulate a previous request.
 *
 * @return TestCase
 */
function from(string $url)
{
    return 
test()->from(...func_get_args());
}

/**
 * Visit the given URI with a GET request.
 *
 * @return TestResponse
 */
function get(string $uri, array $headers = [])
{
    return 
test()->get(...func_get_args());
}

/**
 * Visit the given URI with a GET request, expecting a JSON response.
 *
 * @return TestResponse
 */
function getJson(string $uri, array $headers = [])
{
    return 
test()->getJson(...func_get_args());
}

/**
 * Visit the given URI with a POST request.
 *
 * @return TestResponse
 */
function post(string $uri, array $data = [], array $headers = [])
{
    return 
test()->post(...func_get_args());
}

/**
 * Visit the given URI with a POST request, expecting a JSON response.
 *
 * @return TestResponse
 */
function postJson(string $uri, array $data = [], array $headers = [])
{
    return 
test()->postJson(...func_get_args());
}

/**
 * Visit the given URI with a PUT request.
 *
 * @return TestResponse
 */
function put(string $uri, array $data = [], array $headers = [])
{
    return 
test()->put(...func_get_args());
}

/**
 * Visit the given URI with a PUT request, expecting a JSON response.
 *
 * @return TestResponse
 */
function putJson(string $uri, array $data = [], array $headers = [])
{
    return 
test()->putJson(...func_get_args());
}

/**
 * Visit the given URI with a PATCH request.
 *
 * @return TestResponse
 */
function patch(string $uri, array $data = [], array $headers = [])
{
    return 
test()->patch(...func_get_args());
}

/**
 * Visit the given URI with a PATCH request, expecting a JSON response.
 *
 * @return TestResponse
 */
function patchJson(string $uri, array $data = [], array $headers = [])
{
    return 
test()->patchJson(...func_get_args());
}

/**
 * Visit the given URI with a DELETE request.
 *
 * @return TestResponse
 */
function delete(string $uri, array $data = [], array $headers = [])
{
    return 
test()->delete(...func_get_args());
}

/**
 * Visit the given URI with a DELETE request, expecting a JSON response.
 *
 * @return TestResponse
 */
function deleteJson(string $uri, array $data = [], array $headers = [])
{
    return 
test()->deleteJson(...func_get_args());
}

/**
 * Visit the given URI with a OPTIONS request.
 *
 * @return TestResponse
 */
function options(string $uri, array $data = [], array $headers = [])
{
    return 
test()->options(...func_get_args());
}

/**
 * Visit the given URI with a OPTIONS request, expecting a JSON response.
 *
 * @return TestResponse
 */
function optionsJson(string $uri, array $data = [], array $headers = [])
{
    return 
test()->optionsJson(...func_get_args());
}

/**
 * Visit the given URI with a HEAD request.
 *
 * @return TestResponse
 */
function head(string $uri, array $headers = [])
{
    return 
test()->head(...func_get_args());
}

/**
 * Call the given URI with a JSON request.
 *
 * @return TestResponse
 */
function json(string $methodstring $uri, array $data = [], array $headers = [])
{
    return 
test()->json(...func_get_args());
}

/**
 * Call the given URI and return the Response.
 *
 * @return TestResponse
 */
function call(string $methodstring $uri, array $parameters = [], array $cookies = [], array $files = [], array $server = [], ?string $content null)
{
    return 
test()->call(...func_get_args());
}

:: 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.0058 ]--