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 : b5f7ef4e6fc39c369152bd0046400433.php
<?php $__env->startSection('content'); ?>
    <?php echo $__env->make('admin.breadcrumb', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    <div class="container-fluid">
        <div class="row">
            <div class="col-12">
                <div class="form-group mb-3">
                    <label class="form-label" for="item_name"><?php echo e(trans('labels.item_name')); ?></label>
                    <select name="item_name" class="form-select bg-white" id="item_name">
                        <option value="" selected><?php echo e(trans('labels.select')); ?></option>
                        <?php $__currentLoopData = @$getproduct; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                            <option value="<?php echo e(@$product->id); ?>" <?php echo e(@$sorter == @$product->id ? 'selected' : ''); ?>>
                                <?php echo e(@$product->item_name); ?>

                            </option>
                        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                    </select>
                </div>
                <div class=" card border-0 box-shadow">
                    <div class="card-body">
                        <div class="table-responsive" id="table-display">
                            <table class="table table-striped table-bordered zero-configuration">
                                <thead>
                                    <tr>
                                        <th>#</th>
                                        <th><?php echo e(trans('labels.item_name')); ?></th>
                                        <th><?php echo e(trans('labels.rating')); ?></th>
                                        <th><?php echo e(trans('labels.review')); ?></th>
                                        <th><?php echo e(trans('labels.status')); ?></th>
                                        <th><?php echo e(trans('labels.created_date')); ?></th>
                                        <th><?php echo e(trans('labels.updated_date')); ?></th>
                                        <th><?php echo e(trans('labels.action')); ?></th>
                                    </tr>
                                </thead>
                                <tbody>
                                    <?php $i = 1; ?>
                                    <?php $__currentLoopData = $getreview; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $reviews): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                        <tr>
                                            <td><?php echo $i++; ?></td>
                                            <td><?php echo e($reviews->item_info->item_name); ?></td>
                                            <td><i class="fa fa-star text-warning"></i>
                                                <?php echo e(number_format($reviews->star, 1)); ?> </td>
                                            <td><small><?php echo e($reviews->description); ?></small></td>
                                            <td>
                                                <?php if($reviews->status == 1): ?>
                                                    <a class="btn btn-sm btn-success square hov <?php echo e(Auth::user()->type == 4 ? (helper::check_access('role_product_reviews', Auth::user()->role_id, 'edit') == 1 ? '' : 'd-none') : ''); ?>"
                                                        tooltip="<?php echo e(trans('labels.active')); ?>"
                                                        <?php if(env('Environment') == 'sendbox'): ?> onclick="myFunction()" <?php else: ?> onclick="StatusUpdate('<?php echo e($reviews->id); ?>','2','<?php echo e(URL::to('admin/product_review/status')); ?>')" <?php endif; ?>>
                                                        <i class="fa-sharp fa-solid fa-check"></i>
                                                    </a>
                                                <?php else: ?>
                                                    <a class="btn btn-sm btn-danger square hov <?php echo e(Auth::user()->type == 4 ? (helper::check_access('role_product_reviews', Auth::user()->role_id, 'edit') == 1 ? '' : 'd-none') : ''); ?>"
                                                        tooltip="<?php echo e(trans('labels.deactive')); ?>"
                                                        <?php if(env('Environment') == 'sendbox'): ?> onclick="myFunction()" <?php else: ?> onclick="StatusUpdate('<?php echo e($reviews->id); ?>','1','<?php echo e(URL::to('admin/product_review/status')); ?>')" <?php endif; ?>>
                                                        <i class="fa-sharp fa-solid fa-xmark"></i>
                                                    </a>
                                                <?php endif; ?>
                                            </td>
                                            <td>
                                                <?php echo e(helper::date_format($reviews->created_at)); ?> <br>
                                                <?php echo e(helper::date_time_format($reviews->created_at)); ?>

                                            </td>
                                            <td>
                                                <?php echo e(helper::date_format($reviews->updated_at)); ?> <br>
                                                <?php echo e(helper::date_time_format($reviews->updated_at)); ?>

                                            </td>
                                            <td>
                                                <a class="btn btn-sm btn-danger square hov <?php echo e(Auth::user()->type == 4 ? (helper::check_access('role_product_reviews', Auth::user()->role_id, 'delete') == 1 ? '' : 'd-none') : ''); ?>"
                                                    tooltip="<?php echo e(trans('labels.delete')); ?>"
                                                    <?php if(env('Environment') == 'sendbox'): ?> onclick="myFunction()" <?php else: ?> onclick="DeleteData('<?php echo e($reviews->id); ?>','<?php echo e(URL::to('admin/product_review/destroy')); ?>')" <?php endif; ?>>
                                                    <i class="fa fa-trash"></i>
                                                </a>
                                            </td>
                                        </tr>
                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                </tbody>
                            </table>

                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <form id="filter_review">
        <input type="hidden" name="item_id" id="sorter_item_name" value="<?php echo e(@$sorter); ?>">
    </form>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('script'); ?>
    <script src="<?php echo e(url(env('ASSETSPATHURL') . 'admin-assets/assets/js/custom/reviews.js')); ?>"></script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('admin.theme.default', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /www/wwwroot/koreanshop.lk/resources/views/admin/product_review/index.blade.php ENDPATH**/ ?>
© 2026 GrazzMean