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


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

namespace Modules\Gateway\Entities;

use 
Illuminate\Database\Eloquent\Model;
use 
Illuminate\Database\Eloquent\Factories\HasFactory;

class 
Gateway extends Model
{
    use 
HasFactory;

    protected 
$fillable = ['alias''name''sandbox''data''instruction''image''status'];

    protected static function 
newFactory()
    {
        return 
\Modules\Gateway\Database\factories\GatewayFactory::new();
    }

    
/**
     * Add condition to return the specific module data
     * when calling this function from a Child Module class
     *
     * @param  \Illuminate\Database\Eloquent\Builder  $query
     *
     * @return \Illuminate\Database\Eloquent\Builder
     */
    
public function scopeThis($query)
    {
        return 
$query->where('alias'$this->classNameLower());
    }

    
/**
     * Filter modules by status
     */
    
public function scopeActive($query$status 1)
    {
        
$query->where('status'$status);
    }



    
/**
     * Get the class name. If any child class object
     * like (Paypal/Stripe) calls this then it returns the child class name
     *
     */
    
public function getClassName()
    {
        return 
class_basename($this);
    }


    
/**
     * Get class name in lower case
     *
     */
    
public function classNameLower()
    {
        return 
strtolower($this->getClassName());
    }


    
/**
     * Get the image of the module
     *
     */
    
public function getImageAttribute()
    {
        return 
addonThumbnail($this->attributes['name']);
    }


    public function 
getDataAttribute()
    {
        return 
json_decode($this->attributes['data']);
    }
}

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