!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/inventory.picotech.app/public_html/vendor/laravel/ui/src/   drwxr-xr-x
Free 28.8 GB of 117.98 GB (24.41%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Laravel\Ui;

class 
AuthRouteMethods
{
    
/**
     * Register the typical authentication routes for an application.
     *
     * @param  array  $options
     * @return callable
     */
    
public function auth()
    {
        return function (
$options = []) {
            
$namespace class_exists($this->prependGroupNamespace('Auth\LoginController')) ? null 'App\Http\Controllers';

            
$this->group(['namespace' => $namespace], function() use($options) {
                
// Login Routes...
                
if ($options['login'] ?? true) {
                    
$this->get('login''Auth\LoginController@showLoginForm')->name('login');
                    
$this->post('login''Auth\LoginController@login');
                }

                
// Logout Routes...
                
if ($options['logout'] ?? true) {
                    
$this->post('logout''Auth\LoginController@logout')->name('logout');
                }

                
// Registration Routes...
                
if ($options['register'] ?? true) {
                    
$this->get('register''Auth\RegisterController@showRegistrationForm')->name('register');
                    
$this->post('register''Auth\RegisterController@register');
                }

                
// Password Reset Routes...
                
if ($options['reset'] ?? true) {
                    
$this->resetPassword();
                }

                
// Password Confirmation Routes...
                
if ($options['confirm'] ??
                    
class_exists($this->prependGroupNamespace('Auth\ConfirmPasswordController'))) {
                    
$this->confirmPassword();
                }

                
// Email Verification Routes...
                
if ($options['verify'] ?? false) {
                    
$this->emailVerification();
                }
            });
        };
    }

    
/**
     * Register the typical reset password routes for an application.
     *
     * @return callable
     */
    
public function resetPassword()
    {
        return function () {
            
$this->get('password/reset''Auth\ForgotPasswordController@showLinkRequestForm')->name('password.request');
            
$this->post('password/email''Auth\ForgotPasswordController@sendResetLinkEmail')->name('password.email');
            
$this->get('password/reset/{token}''Auth\ResetPasswordController@showResetForm')->name('password.reset');
            
$this->post('password/reset''Auth\ResetPasswordController@reset')->name('password.update');
        };
    }

    
/**
     * Register the typical confirm password routes for an application.
     *
     * @return callable
     */
    
public function confirmPassword()
    {
        return function () {
            
$this->get('password/confirm''Auth\ConfirmPasswordController@showConfirmForm')->name('password.confirm');
            
$this->post('password/confirm''Auth\ConfirmPasswordController@confirm');
        };
    }

    
/**
     * Register the typical email verification routes for an application.
     *
     * @return callable
     */
    
public function emailVerification()
    {
        return function () {
            
$this->get('email/verify''Auth\VerificationController@show')->name('verification.notice');
            
$this->get('email/verify/{id}/{hash}''Auth\VerificationController@verify')->name('verification.verify');
            
$this->post('email/resend''Auth\VerificationController@resend')->name('verification.resend');
        };
    }
}

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