shell bypass 403

UnknownSec Shell


name : ForgotPasswordController.php
<?php

namespace App\Http\Controllers\Auth;

use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
use Modules\FrontendManage\Entities\LoginPage;

class ForgotPasswordController extends Controller
{
    /*
    |--------------------------------------------------------------------------
    | Password Reset Controller
    |--------------------------------------------------------------------------
    |
    | This controller is responsible for handling password reset emails and
    | includes a trait which assists in sending these notifications from
    | your application to your users. Feel free to explore this trait.
    |
    */

    use SendsPasswordResetEmails;


    public function showLinkRequestForm()
    {
        $page = LoginPage::getData();
        return view(theme('auth.passwords.email'), compact('page'));
    }

    public function SendPasswordResetLink()
    {
        $page = LoginPage::getData();
        return view(theme('auth.passwords.email'), compact('page'));
    }

    public function ResetPassword()
    {
        $page = LoginPage::getData();
        return view(theme('auth.passwords.reset'), compact('page'));
    }
}

© 2025 UnknownSec
afwwrfwafr45458465
Password