shell bypass 403

UnknownSec Shell


name : Module.php
<?php

namespace Modules\ModuleManager\Entities;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Cache;
use Rennokki\QueryCache\Traits\QueryCacheable;

class Module extends Model
{


    protected $fillable = [];

    public static function boot()
    {
        parent::boot();
        self::created(function ($model) {
            Cache::forget('ModuleList');
        });
        self::updated(function ($model) {
            Cache::forget('ModuleList');
        });
        self::deleted(function ($model) {
            Cache::forget('ModuleList');
        });
    }

    public function verify()
    {
        return $this->belongsTo(InfixModuleManager::class, 'name', 'name')->withDefault();
    }
}

© 2025 UnknownSec
afwwrfwafr45458465
Password