shell bypass 403

UnknownSec Shell


name : 2020_10_14_071338_create_recentview_courses_table.php
<?php

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

class CreateRecentviewCoursesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('recentview_courses', function (Blueprint $table) {
            $table->id();
            $table->bigInteger('user_id')->nullable();
            $table->bigInteger('course_id')->nullable();
            $table->timestamps();
        });

        for($i=1; $i<=5; $i++){
            $s = new RecentviewCourse;
            $s->user_id = 3;
            $s->course_id = $i;
            $s->save();
        }
    }

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

© 2025 UnknownSec
afwwrfwafr45458465
Password