Temporary Advertisements:
Ad
Ad
Ad
SELLING MUMARA CAMPAIGN - SOURCE CODE
by mailpassuser - Saturday September 14, 2024 at 03:09 PM
#1
MUMARA CAMPAIGN - SOURCE CODE

https://www.mumara.com/campaigns/

$5.000 FULL SOURCE CODE - NEVER BEEN SOLD BEFORE

PROOF - Replace your applicationSettings.php with this code:

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class applicationSettings extends Model
{
    protected $fillable = ['setting_name', 'setting_value'];

    public $timestamps = false;

    public static function boot()
    {
        parent::boot();
        self::created(function ($model) {
            writeApplicationSettingsToFile($model);
        });

        self::saved(function ($model) {
            writeApplicationSettingsToFile($model);
        });

        self::updated(function ($model) {
            writeApplicationSettingsToFile($model);
        });

    }

    protected function writeApplicationSettingsToFile($model)
    {

        // ... code here
        $vars = $model::all([
            'setting_name', 'setting_value',
        ])
            ->keyBy('setting_name') // key every setting by its name
            ->transform(function ($setting) {
                return $setting->setting_value; // return only the value
            })->toArray(); // make it an array
        $str = "<?php \n ".'$settings ='." \n [ \n";
        foreach ($vars as $key => $var) {
            if ($key != 'fallback_private_key' || $key != 'fallback_public_key') {
                if ($var == null) {
                    $str .= "'$key' =>".'null,'."\n";
                } else {
                    $str .= "'$key' =>"."'".addcslashes($var, "'")."',"."\n";
                } // Escaping single quotes
            }
        }
        $str .= ' ];';
        $dirPath = storage_path('framework/settings');
        createDir($dirPath, 0777);
        file_put_contents("$dirPath/app.php", $str);
    }
}
Avoid scams. Always use our Official Middleman Service for transactions.
Reply
#2
how's it going,waiting for you,you said:Help me install it on the server
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  MALWARE WhatsApp Android RCE (image/sticker path) xynapse 0 25 24 minutes ago
Last Post: xynapse
  MALWARE (BRAND NEW) APPLE iOS 0 DAY EXPLOIT | VERMAN sydneysweeneywhy 0 30 37 minutes ago
Last Post: sydneysweeneywhy
  MALWARE iOS 0-Day Exploit Kits | DarkSword & Coruna xynapse 2 1,399 56 minutes ago
Last Post: xynapse
  SELLING PeopleSoft pre-auth RCE + WAF bypass ShinyHunters 0 103 2 hours ago
Last Post: ShinyHunters
  MALWARE ExEngine AV/EDR Killer | Ring-3 Rootkit | UAC Bypass xynapse 2 698 6 hours ago
Last Post: xynapse

Forum Jump:


 Users browsing this forum: 1 Guest(s)