!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/sms.picotech.app/public_html/storage/framework/views/   drwxrwxrwx
Free 28.36 GB of 117.98 GB (24.04%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     e55fb84447fd64ed0ea0c2361401fc46.php (6.57 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="form-group">
    <label for="name"><?php echo app('translator')->get('admin.form.input.app_name'); ?></label>
    <input value="<?php echo e(get_settings('app_name')); ?>" type="text" name="app_name" class="form-control" id="app_name"
           placeholder="<?php echo app('translator')->get('admin.form.input.app_name'); ?>">
</div>
<?php $recaptchaget_settings('recaptcha_key')?json_decode(get_settings('recaptcha_key')):''?>

<div class="form-group">
    <label for="crisp_token"><?php echo app('translator')->get('admin.form.input.crisp_token'); ?></label>
    <input value="<?php echo e(get_settings('crisp_token')); ?>" type="text" name="crisp_token" class="form-control" id="crisp_token"
           placeholder="<?php echo app('translator')->get('admin.form.input.crisp_token'); ?>">
</div>

<div class="form-group">
    <label for=""><?php echo e(trans('admin.notice_status')); ?></label>
    <select name="notice_status" class="form-control" id="">
        <option <?php echo e(isset(get_settings('notice_status')->notice_status) && get_settings('notice_status')->notice_status=='disable'?'selected':''); ?> value="disable"><?php echo e(trans('Disabled')); ?></option>
        <option <?php echo e(isset(get_settings('notice_status')->notice_status) && get_settings('notice_status')->notice_status=='enable'?'selected':''); ?> value="enable"><?php echo e(trans('Enable')); ?></option>
    </select>
</div>
<div class="form-group">
    <label for=""><?php echo e(trans('admin.recaptcha_site_key')); ?></label>
    <input type="text" class="form-control" name="recaptcha_site_key" placeholder="Enter Site Key" value="<?php echo e(isset($recaptcha->recaptcha_site_key)?$recaptcha->recaptcha_site_key:''); ?>">
</div>
<div class="form-group">
    <label for=""><?php echo e(trans('admin.recaptcha_secret_key')); ?></label>
    <input type="text" class="form-control" name="recaptcha_secret_key" placeholder="Enter Secret Key"
           value="<?php echo e(isset($recaptcha->recaptcha_secret_key)?$recaptcha->recaptcha_secret_key:''); ?>">
</div>

<div class="form-group">
    <label for="favicon"><?php echo app('translator')->get('admin.form.input.favicon'); ?></label><img class="img-demo-setting" src="<?php echo e(asset('uploads/'.get_settings('app_favicon'))); ?>" alt="">
    <div class="input-group">
        <div class="custom-file">
            <input name="favicon" type="file" class="custom-file-input" id="favicon">
            <label class="custom-file-label" for="favicon"><?php echo app('translator')->get('admin.form.input.choose_file'); ?></label>
        </div>
    </div>
</div>

<div class="form-group">
    <label for="logo"><?php echo app('translator')->get('admin.form.input.logo'); ?></label> <img class="img-demo-setting" src="<?php echo e(asset('uploads/'.get_settings('app_logo'))); ?>" alt="">
    <div class="input-group">
        <div class="custom-file">
            <input name="logo" type="file" class="custom-file-input" id="logo">
            <label class="custom-file-label" for="logo"><?php echo app('translator')->get('admin.form.input.choose_file'); ?></label>
        </div>
    </div>
</div>

<div class="card p-3">
    <h4><?php echo e(trans('admin.Contact_Information')); ?></h4>
    <hr>
    <?php $contactDataget_settings('contact_info')?json_decode(get_settings('contact_info')):'';  ?>
    <div class="form-group">
        <label for=""><?php echo e(trans('admin.Address')); ?></label>
        <textarea name="address" class="form-control" cols="4" rows="4"><?php echo e(isset($contactData->address)?$contactData->address:''); ?></textarea>
    </div>
    <div class="form-group">
        <label for=""><?php echo e(trans('admin.Phone_Number')); ?></label>
        <input type="number" name="phone_number" class="form-control" value="<?php echo e(isset($contactData->phone_number)?$contactData->phone_number:''); ?>">
    </div>
    <div class="form-group">
        <label for=""><?php echo e(trans('admin.email')); ?></label>
        <input type="email" name="email_address" class="form-control" value="<?php echo e(isset($contactData->email_address)?$contactData->email_address:''); ?>">
    </div>

</div>

<div class="form-group">
    <label for="status"><?php echo app('translator')->get('admin.addon.customer_registration'); ?></label>
    <select class="form-control" name="registration_status" id="registration_status">
        <option <?php echo e(get_settings('registration_status')=='disable'?'selected':''); ?> value="disable"><?php echo e(trans('admin.disabled')); ?></option>
        <option <?php echo e(get_settings('registration_status')=='enable'?'selected':''); ?> value="enable"><?php echo e(trans('admin.enabled')); ?></option>
    </select>
</div>
<div class="form-group">
    <label for="status"><?php echo e(trans('admin.reseller_status')); ?>

        <i  data-toggle="tooltip" data-placement="right" class="fa fa-question-circle alert-tooltip-custom ml-1"
            title="You cann't disabled reseller status, if you create any reseller or master reseller"></i>
    </label>
    <select class="form-control" name="reseller_status" <?php echo e(isset($seller)?'disabled':''); ?> >
        <option <?php echo e(get_settings('reseller_status')=='enable'?'selected':''); ?> value="enable"><?php echo e(trans('admin.enabled')); ?></option>
        <option <?php echo e(get_settings('reseller_status')=='disable'?'selected':''); ?> value="disable"><?php echo e(trans('admin.disabled')); ?></option>
    </select>
</div>


<div class="form-group">
    <label for="status"><?php echo app('translator')->get('admin.settings.landing_page'); ?></label>
    <select class="form-control" name="landing_page_status" id="landing_page_status">
        <option <?php echo e(get_settings('landing_page_status')=='enable'?'selected':''); ?> value="enable"><?php echo e(trans('admin.enabled')); ?></option>
        <option <?php echo e(get_settings('landing_page_status')=='disable'?'selected':''); ?> value="disable"><?php echo e(trans('admin.disabled')); ?></option>
    </select>
</div>

<div class="form-group">
    <label for="status"><?php echo e(trans('admin.Maintenance_Mode')); ?></label>
    <select class="form-control" name="maintence_mode" id="landing_page_status">
        <option <?php echo e(get_settings('maintence_mode')=='disable'?'selected':''); ?> value="disable"><?php echo e(trans('admin.disabled')); ?></option>
        <option <?php echo e(get_settings('maintence_mode')=='enable'?'selected':''); ?> value="enable"><?php echo e(trans('admin.enabled')); ?></option>
    </select>
</div>
<?php /**PATH /home/picotech/domains/test.sms.picotech.app/public_html/resources/views/admin/settings/app_update_form.blade.php ENDPATH**/ ?>

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