Intrusion Exploit
Server: LiteSpeed
System: Linux cisadane.iixcp.rumahweb.net 5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64
User: lenf4658 (1805)
PHP: 8.4.19
Disabled: NONE
Upload Files
File: //home/lenf4658/www/unukaltim.lensapedia.id/unukaltim/database/seeders/WebSettingSeeder.php
<?php

namespace Database\Seeders;

use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;

class WebSettingSeeder extends Seeder
{
    /**
     * Run the database seeds.
     */
    public function run(): void
    {
        \App\Models\WebSetting::create([
            'key' => 'EMAIL_ADDRESS',
            'value' => 'mailto:unukaltim@gmail.com',
        ]);

        \App\Models\WebSetting::create([
            'key' => 'WHATSAPP_LINK',
            'value' => 'https://api.whatsapp.com/send/?phone=%2B6285750417213&text&type=phone_number&app_absent=0',
        ]);

        \App\Models\WebSetting::create([
            'key' => 'FACEBOOK_LINK',
            'value' => 'https://www.facebook.com/pages/Universitas%20Nahdlatul%20Ulama,%20Samarinda%20Seberang/397261400427240/?locale=id_ID',
        ]);

        \App\Models\WebSetting::create([
            'key' => 'INSTAGRAM_LINK',
            'value' => 'https://www.instagram.com/unukaltim/',
        ]);

        \App\Models\WebSetting::create([
            'key' => 'PENDAFTARAN_LINK',
            'value' => 'https://docs.google.com/forms/d/1Zjv3OXhWhPgJeZH5YkGvWBtrdSC2DslbqeZAn3H4a7k/viewform?edit_requested=true',
        ]);
    }
}