shell bypass 403

GrazzMean Shell

Uname: Linux peekpos.com 6.8.0-1060-aws #63~22.04.1-Ubuntu SMP Tue Jun 30 02:32:53 UTC 2026 x86_64
Software: Apache
PHP version: 8.3.25 [ PHP INFO ] PHP os: Linux
Server Ip: 47.130.192.226
Your Ip: 10.1.31.86
User: www (1001) | Group: www (1001)
Safe Mode: OFF
Disable Function:
passthru,putenv,chroot,chgrp,chown,shell_exec,popen,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv

name : default.blade.php
<!DOCTYPE html>
<html lang="en" dir="{{ session('direction') == 2 ? 'rtl' : 'ltr' }}" class="light">

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="csrf-token" content="{{ csrf_token() }}">

    <script>
        const theme = localStorage.getItem('theme');
        if (theme === 'dark') {
            document.documentElement.classList.add('dark');
        } else {
            document.documentElement.classList.add('light');
        }
    </script>

    <title>{{ @helper::appdata()->title }} | {{ trans('labels.admin_title') }}</title>
    <link rel="icon" type="image/png" sizes="16x16" href="{{ helper::image_path(@helper::appdata()->favicon) }}">
    <link rel="stylesheet"
        href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/bootstrap/bootstrap.min.css') }}">
    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/fontawesome/all.min.css') }}">
    <!-- FontAwesome CSS -->
    <link rel="stylesheet" href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/toastr/toastr.min.css') }}">
    <!-- Toastr CSS -->
    <link rel="stylesheet"
        href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/sweetalert/sweetalert2.min.css') }}">
    <!-- Sweetalert CSS -->
    <link rel="stylesheet" href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/style.css') }}">
    <!-- Custom CSS -->
    <link rel="stylesheet" href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/responsive.css') }}">
    <!-- Responsive CSS -->
    <link rel="stylesheet"
        href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/datatables/dataTables.bootstrap5.min.css') }}">
    <!-- dataTables css -->
    <link rel="stylesheet"
        href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/datatables/dataTables.bootstrap5.min.css') }}">
    <!-- dataTables css -->
    <link rel="stylesheet"
        href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/datatables/buttons.dataTables.min.css') }}">
    <link rel="stylesheet"
        href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.1/css/bootstrap-select.css" />

    <!-- dataTables css -->
    <style>
        :root {
            /* Color */
            --bs-primary: {{ helper::appdata('')->web_primary_color }};
            --bs-secondary: {{ helper::appdata('')->web_secondary_color }};
        }
    </style>
    @yield('styles')
</head>

<body >
    {{-- @include('admin.theme.preloader') --}}
    <main>
        <div class="wrapper">
            @include('admin.theme.header')
            <div class="content-wrapper">
                @include('admin.theme.sidebar')
                <div class="{{ session()->get('direction') == 2 ? 'main-content-rtl' : 'main-content' }}">
                    <div class="page-content">
                        @if (helper::check_alert() == 0)
                            <div class="alert alert-danger text-center">
                                <a href="{{ URL::to('admin/settings') }}" class="text-dark"> <i class="fa fa-cog"></i>
                                    {{ trans('messages.settings_note') }}</a>
                            </div>
                        @endif
                        @yield('content')
                    </div>
                </div>
            </div>
            <!-- Modal Edit Profile -->
            <div class="modal fade text-left" id="editprofilemodal" tabindex="-1" role="dialog"
                aria-labelledby="RditProduct" aria-hidden="true">
                <div class="modal-dialog modal-dialog-centered" role="document">
                    <div class="modal-content">
                        <div class="modal-header justify-content-between">
                            <h5 class="modal-title color-changer fw-500" id="RditProduct">
                                {{ trans('labels.edit_profile') }}</h5>
                            <button type="button" class="bg-transparent border-0 m-0" data-bs-dismiss="modal"
                                aria-label="Close">
                                <i class="fa-regular fa-xmark fs-5 color-changer"></i>
                            </button>
                        </div>
                        <form action="{{ URL::to('admin/edit-profile') }}" method="post"
                            enctype="multipart/form-data">
                            @csrf
                            <div class="modal-body">
                                <div class="row g-3">
                                    <div class="col-12">
                                        <label class="form-label">{{ trans('labels.name') }} </label>
                                        <div class="form-group">
                                            <input type="text" placeholder="{{ trans('labels.name') }}"
                                                class="form-control" name="name" value="{{ Auth::user()->name }}"
                                                required>
                                            @error('name')
                                                <span class="text-danger">{{ $message }}</span>
                                            @enderror
                                        </div>
                                    </div>
                                    <div class="col-12">
                                        <label class="form-label">{{ trans('labels.email') }} </label>
                                        <div class="form-group">
                                            <input type="email" placeholder="{{ trans('labels.email') }}"
                                                class="form-control" name="email" value="{{ Auth::user()->email }}"
                                                required>
                                            @error('email')
                                                <span class="text-danger">{{ $message }}</span>
                                            @enderror
                                        </div>
                                    </div>
                                    <div class="col-12">
                                        <label class="form-label">{{ trans('labels.mobile') }} </label>
                                        <div class="form-group">
                                            <input type="text" placeholder="{{ trans('labels.mobile') }}"
                                                class="form-control numbers_only" name="mobile" id="mobile"
                                                value="{{ Auth::user()->mobile }}" required>
                                            @error('mobile')
                                                <span class="text-danger">{{ $message }}</span>
                                            @enderror
                                        </div>
                                    </div>
                                    <div class="col-12">
                                        <label class="form-label">{{ trans('labels.image') }} </label>
                                        <div class="form-group">
                                            <input type="file" class="form-control" name="profile"
                                                accept=".jpg,.jpeg,.png">
                                            @error('profile')
                                                <span class="text-danger">{{ $message }}</span> <br>
                                            @enderror
                                            <img src="{{ helper::image_path(Auth::user()->profile_image) }}"
                                                class="img-fluid rounded user-profile-image mt-1" alt="">
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="modal-footer">
                                <button type="reset" class="btn btn-danger px-4"
                                    data-bs-dismiss="modal">{{ trans('labels.close') }}</button>
                                <input class="btn btn-primary px-4"
                                    @if (env('Environment') == 'sendbox') type="button" onclick="myFunction()" @else type="submit" @endif
                                    value="{{ trans('labels.edit') }}">
                            </div>
                        </form>
                    </div>
                </div>
            </div>
            <!-- Modal Change Password-->
            <div class="modal fade text-left" id="changepasswordmodal" tabindex="-1" role="dialog"
                aria-labelledby="RditProduct" aria-hidden="true">
                <div class="modal-dialog modal-dialog-centered" role="document">
                    <div class="modal-content">
                        <div class="modal-header justify-content-between">
                            <h5 class="modal-title color-changer fw-500" id="RditProduct">
                                {{ trans('labels.change_password') }}</h5>
                            <button type="button" class="bg-transparent border-0 m-0" data-bs-dismiss="modal"
                                aria-label="Close">
                                <i class="fa-regular fa-xmark fs-5 color-changer"></i>
                            </button>
                        </div>
                        <form action="{{ URL::to('admin/change-password') }}" method="post">
                            @csrf
                            <div class="modal-body">
                                <div class="row g-3">
                                    <div class="col-md-12">
                                        <label class="form-label">{{ trans('labels.old_password') }} </label>
                                        <div class="form-group">
                                            <input type="password" class="form-control" name="oldpassword"
                                                id="oldpassword" placeholder="{{ trans('labels.old_password') }}"
                                                value=" " required>
                                            @error('oldpassword')
                                                <span class="text-danger">{{ $message }}</span>
                                            @enderror
                                        </div>
                                    </div>
                                    <div class="col-md-12">
                                        <label class="form-label">{{ trans('labels.new_password') }} </label>
                                        <div class="form-group">
                                            <input type="password" class="form-control" name="newpassword"
                                                id="newpassword" placeholder="{{ trans('labels.new_password') }}"
                                                required>
                                            @error('newpassword')
                                                <span class="text-danger">{{ $message }}</span>
                                            @enderror
                                        </div>
                                    </div>
                                    <div class="col-md-12">
                                        <label class="form-label">{{ trans('labels.confirm_password') }} </label>
                                        <div class="form-group">
                                            <input type="password" class="form-control" name="confirmpassword"
                                                id="confirmpassword"
                                                placeholder="{{ trans('labels.confirm_password') }}" required>
                                            @error('confirmpassword')
                                                <span class="text-danger">{{ $message }}</span>
                                            @enderror
                                        </div>
                                    </div>
                                </div>
                            </div>
                            <div class="modal-footer">
                                <button type="reset" class="btn btn-danger px-4"
                                    data-bs-dismiss="modal">{{ trans('labels.close') }}</button>
                                <input class="btn btn-primary px-4"
                                    @if (env('Environment') == 'sendbox') type="button" onclick="myFunction()" @else type="submit" @endif
                                    value="{{ trans('labels.edit') }}">
                            </div>
                        </form>
                    </div>
                </div>
            </div>
            <!--Modal: order-modal-->
            <div class="modal fade" id="order-modal" tabindex="-1" role="dialog"
                aria-labelledby="exampleModalLabel" aria-hidden="true">
                <div class="modal-dialog modal-notify modal-info" role="document">
                    <div class="modal-content text-center">
                        <div class="modal-header d-flex justify-content-center">
                            <p class="heading color-changer">{{ trans('messages.be_up_to_date') }}</p>
                        </div>
                        <div class="modal-body color-changer"><i class="fa fa-bell fa-4x animated rotateIn mb-4"></i>
                            <p class="color-changer">{{ trans('messages.new_order_arrive') }}</p>
                        </div>
                        <div class="modal-footer flex-center">
                            <a role="button" class="btn btn-secondary" onClick="window.location.reload();"
                                data-bs-dismiss="modal">{{ trans('labels.okay') }}</a>
                        </div>
                    </div>
                </div>
            </div>
            <!--Modal: modalPush-->
            <!-- ASSIGN-DRIVER-MODAL-START -->
            <div id="myModal" class="modal fade" role="dialog">
                <div class="modal-dialog">
                    <div class="modal-content">
                        <div class="modal-header">
                            <button type="button" class="bg-transparent border-0 m-0" data-bs-dismiss="modal"
                                aria-label="Close">
                                <i class="fa-regular fa-xmark fs-5 color-changer"></i>
                            </button>
                        </div>
                        <form method="post" id="assign">
                            @csrf
                            <input type="hidden" name="driverurl" id="driverurl"
                                value="{{ URL::to('admin/orders/assign-driver') }}">
                            <div class="modal-body">
                                <input type="hidden" class="form-control" id="order_id" name="order_id" readonly>
                                <div class="form-group">
                                    <label for="category_id"
                                        class="form-label">{{ trans('labels.order_number') }}</label>
                                    <input type="text" class="form-control" id="order_number" readonly="">
                                    <span class="id_error text-danger"></span>
                                </div>
                                <div class="form-group">
                                    <label for="category_id" class="form-label">{{ trans('messages.select_driver') }}
                                    </label>
                                    <select class="form-control" name="driver_id" id="driver_id"
                                        required="required">
                                        <option value="" selected>{{ trans('messages.select_driver') }}
                                        </option>
                                        @if (is_array(@$getdriver) || is_object(@$getdriver))
                                            @foreach (@$getdriver as $driver)
                                                <option value="{{ $driver->id }}">
                                                    {{ $driver->name }}</option>
                                            @endforeach
                                        @endif
                                    </select>
                                    <span class="driver_error text-danger"></span>
                                </div>
                            </div>
                            <div class="modal-footer">
                                <button type="button" class="btn btn-default px-4"
                                    data-bs-dismiss="modal">{{ trans('labels.close') }}</button>
                                <button type="button" class="btn btn-primary px-4"
                                    onclick="assigndriver()">{{ trans('labels.save') }}</button>
                            </div>
                        </form>
                    </div>
                </div>
            </div>
            <!-- ASSIGN-DRIVER-MODAL-END -->

            <!-- Payment Modal -->
            <div class="modal fade" id="paymentModal" tabindex="-1" aria-labelledby="paymentModalLabel"
                aria-hidden="true">
                <div class="modal-dialog">
                    <div class="modal-content">
                        <div class="modal-header justify-content-between">
                            <h5 class="modal-title color-changer fw-500" id="paymentModalLabel">
                                {{ trans('labels.record_payment') }}</h5>
                            <button type="button" class="bg-transparent border-0 m-0" data-bs-dismiss="modal"
                                aria-label="Close">
                                <i class="fa-regular fa-xmark fs-5 color-changer"></i>
                            </button>
                        </div>
                        <form action=" {{ URL::to('admin/orders/payment_status-' . '2') }}" method="post"
                            enctype="multipart/form-data">
                            @csrf
                            <div class="modal-body">
                                <input type="hidden" id="payment_order_number" name="order_number" value="">
                                <div id="cod_payment">
                                    <label for="modal_total_amount" class="form-label">
                                        {{ trans('labels.total') }} {{ trans('labels.amount') }}
                                    </label>
                                    <input type="text" class="form-control numbers_only" name="modal_total_amount"
                                        id="modal_total_amount" disabled value="">

                                    <label for="modal_amount" class="form-label mt-2">
                                        {{ trans('labels.cash_received') }}
                                    </label>
                                    <input type="text" class="form-control numbers_only" name="modal_amount"
                                        id="modal_amount" value="" onkeyup="validation($(this).val())">
                                    <label for="modal_amount" class="form-label mt-2">
                                        {{ trans('labels.change_amount') }}
                                    </label>
                                    <input type="number" class="form-control" name="ramin_amount" id="ramin_amount"
                                        value="" readonly>
                                </div>
                                <div id="bank_payment">
                                    <img src='' id="bank_detail" class="w-100 h-100">
                                </div>
                            </div>
                            <div class="modal-footer">
                                <button type="submit"
                                    class="btn btn-secondary">{{ trans('labels.submit') }}</button>
                            </div>
                        </form>
                    </div>
                </div>
            </div>

            <!-- EDIT THEME IMAGE MODAL -->
            <div class="modal fade" id="editthemeModal" tabindex="-1" aria-labelledby="editthemeModallable"
                aria-hidden="true">
                <div class="modal-dialog">
                    <div class="modal-content">
                        <div class="modal-header justify-content-between">
                            <h5 class="modal-title color-changer text-dark" id="editModallable">
                                {{ trans('labels.image') }}
                                <span class="text-danger"> * </span>
                            </h5>
                            <button type="button" class="bg-transparent border-0 m-0" data-bs-dismiss="modal"
                                aria-label="Close">
                                <i class="fa-regular fa-xmark fs-5 color-changer"></i>
                            </button>
                        </div>
                        <form action=" {{ URL::to('admin/settings/update') }}" method="post"
                            enctype="multipart/form-data">
                            @csrf
                            <div class="modal-body">
                                <input type="hidden" id="theme_id" name="theme_id">
                                <input type="file" name="theme_image" class="form-control" id=""
                                    required>
                            </div>
                            <div class="modal-footer">
                                <button
                                    @if (env('Environment') == 'sendbox') type="button" onclick="myFunction()" @else type="submit" name="themeimage_update" value="1" @endif
                                    class="btn btn-primary px-4 {{ Auth::user()->type == 4 ? (helper::check_access('role_settings', Auth::user()->role_id, Auth::user()->vendor_id, 'edit') == 1 ? '' : 'd-none') : '' }}">{{ trans('labels.save') }}</button>
                            </div>
                        </form>
                    </div>
                </div>
            </div>

            <footer
                class="py-3 text-center fixed-bottom border-top {{ session()->get('direction') == 2 ? 'rtl' : '' }}">
                {{ @helper::appdata()->copyright }}
            </footer>
        </div>
    </main>
    @include('admin.theme.script')
    <script type="text/javascript">
        let are_you_sure = "{{ trans('messages.are_you_sure') }}";
        let yes = "{{ trans('messages.yes') }}";
        let no = "{{ trans('messages.no') }}";
        let wrong = "{{ trans('messages.wrong') }}";
        let cannot_delete = "{{ trans('messages.cannot_delete') }}";
        let last_image = "{{ trans('messages.last_image') }}";
        let record_safe = "{{ trans('messages.record_safe') }}";
        let select = "{{ trans('labels.select') }}";
        let variation = "{{ trans('labels.variation') }}";
        let enter_variation = "{{ trans('labels.variation') }}";
        let product_price = "{{ trans('labels.product_price') }}";
        let enter_product_price = "{{ trans('labels.product_price') }}";
        let sale_price = "{{ trans('labels.sale_price') }}";
        let enter_sale_price = "{{ trans('labels.sale_price') }}";

        function currency_format(price) {
            var price = price * {{ @helper::currencyinfo($storeinfo->id)->exchange_rate }};
            if ("{{ @helper::currencyinfo()->currency_position }}" == 1) {
                return "{{ @helper::currencyinfo()->currency }}" + parseFloat(price).toFixed(2);
            } else {
                return parseFloat(price).toFixed(2) + "{{ @helper::currencyinfo()->currency }}";
            }
        }
        toastr.options = {
            "closeButton": true,
            "progressBar": true
        }
        @if (Session::has('success'))
            toastr.success("{{ session('success') }}");
        @endif
        @if (Session::has('error'))
            toastr.error("{{ session('error') }}");
        @endif

        // to-display-error-message
        @if ($errors->any())
            @foreach ($errors->all() as $error)
                toastr.error('{{ $error }}');
            @endforeach
        @endif
        var noticount = 0;
        var env = "{{ env('Environment') }}";
        (function noti() {
            $.ajax({
                headers: {
                    'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                },
                url: "{{ url('admin/getorder') }}",
                method: 'GET', //Get method,
                dataType: "json",
                success: function(response) {
                    noticount = localStorage.getItem("count");
                    if (response.count > 9) {
                        $('#notificationcount').text(response.count + "+");
                    } else {
                        $('#notificationcount').text(response.count);
                    }
                    if (response.count != 0) {
                        if (noticount != response.count) {
                            localStorage.setItem("count", response.count);
                            jQuery("#order-modal").modal('show');
                            var audio = new Audio(
                                "{{ url(env('ASSETSPATHURL')) }}/admin-assets/notification/" +
                                response
                                .noti);
                            audio.play();
                        }
                    } else {
                        localStorage.setItem("count", response.count);
                    }
                    setTimeout(noti, 5000);
                }
            });
        })();
    </script>
    <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
    <script src="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/js/common.js') }}"></script><!-- Common JS -->
    @yield('script')
</body>

</html>
© 2026 GrazzMean