!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/ecom1.picotech.app/public_html/resources/views/admin/setting/   drwxr-xr-x
Free 29.24 GB of 117.98 GB (24.78%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     AdminController.php (1.22 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace App\Http\Controllers\Admin;

use 
Illuminate\Http\Request;
use 
App\Http\Controllers\Controller;
use 
Validator;

class 
AdminController extends Controller
{
    public function 
index() {
        
dd(bcrypt('arowpe@#recharge'));
        
dd('Here Dynamic');
    }

    public function 
add() {
      
$types = ['type1','type2'];
      return 
view('admin.customer.add',compact('types'));
    }

    public function 
store(Request $request) {

      
// dd($request->all());

      
$messsages = array(
        
'firstname.required'=>'Name is Required',
        
'firstname.min' => 'Minimum must be 4 onlyyy'
      
);

      
$rules = [
          
// 'firstname' => 'required|min:4|max:6',
          // 'mobilenumber' => 'required|numeric|digits:10',
          
'userimage' => 'required|image|mimes:jpg,png'
        
];

      
$validator Validator::make($request->all(), $rules,$messsages);

      if (
$validator->fails()) {
          return 
redirect()->back()->withErrors($validator// send back all errors to the login form
              
->with('error''login')->withInput(); // send back the input (not the password) so that we can repopulate the form
      
}

      echo 
'Success';


    }

}

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