shell bypass 403

UnknownSec Shell

: /home/bouloter/sms/database/migrations/ [ drwxr-xr-x ]

name : 2021_03_31_130224_create_chat_box_messages_table.php
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateChatBoxMessagesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('chat_box_messages', function (Blueprint $table) {
            $table->id();
            $table->unsignedBigInteger('box_id');
            $table->longText('message')->nullable();
            $table->longText('media_url')->nullable();
            $table->string('sms_type', 15)->default('sms');
            $table->enum('send_by', ['from', 'to'])->nullable();
            $table->unsignedBigInteger('sending_server_id')->nullable();

            $table->timestamps();

            // foreign
            $table->foreign('box_id')->references('id')->on('chat_boxes')->onDelete('cascade');
            $table->foreign('sending_server_id')->references('id')->on('sending_servers')->onDelete('cascade');
        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('chat_box_messages');
    }
}

© 2025 UnknownSec
afwwrfwafr45458465
Password