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


Viewing file:     9c41fc51da6fdf3034f195a719f057d0.php (11.44 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

<div class="campaign_section" id="bulk_send_section">
    <input type="hidden" name="dynamic_campaign" value="yes">
    <div class="card">
        <div class="card-body">
            <div class="form-group mt-3">
                <label for=""><?php echo e(trans('customer.campaign_title')); ?></label>
                <input type="text" class="form-control" value="<?php echo e(old('title')??(isset($campaign)?$campaign->title:'')); ?>" required placeholder="Enter Campaign Title" name="title">
            </div>

            <div class="form-group pb-3">
                <label class="mb-3 w-100" for=""><?php echo e(trans('customer.select_sending_type')); ?></label>
                <button type="button" class="btn btn-default from_type_btn active" data-type="sms"><?php echo e(trans('customer.sms')); ?></button>
                <button type="button" class="btn btn-default from_type_btn" data-type="mms"><?php echo e(trans('customer.mms')); ?></button>
                <button type="button" class="btn btn-default from_type_btn" data-type="whatsapp"><?php echo e(trans('customer.whatsapp_sms')); ?></button>
                <button type="button" class="btn btn-default from_type_btn" data-type="voicecall"><?php echo e(trans('customer.voice_sms')); ?></button>
            </div>
            <input type="hidden" class="from_selected_type" name="from_selected_type" value="sms">

            <!--SMS !-->
            <div class="form-group from-section" id="sms_section">
                <div class="form-group" id="sender_type">
                    <label for=""><?php echo e(trans('customer.select_sender_type')); ?></label>
                    <select name="type" class="form-control senderType">
                        <option  value="number"><?php echo e(trans('customer.number')); ?></option>
                        <option  value="sender_id"><?php echo e(trans('customer.sender_id')); ?></option>
                    </select>
                </div>

                <div class="form-group from-number-section pb-3" id="phone_number_section">
                    <label for=""><?php echo e(trans('customer.select_sender')); ?></label>
                    <select name="from_number[]" id="campaignFromNumber" class="select2 compose-select"
                            multiple="multiple"
                            data-placeholder="<?php echo e(trans('Select Senders')); ?>:">

                        <?php if(isset($users_from_number)): ?>
                            <optgroup label="From Numbers">
                                <?php $__currentLoopData $users_from_number$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $number): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                    <option value="<?php echo e(json_encode($number)); ?>"><?php echo e($number['number']); ?></option>
                                <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                            </optgroup>
                        <?php endif; ?>

                        <?php if(isset($users_from_groups)): ?>
                            <optgroup label="From Groups">
                                <?php $__currentLoopData $users_from_groups$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $group): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                    <option value="<?php echo e(json_encode($group)); ?>"><?php echo e($group['number']); ?></option>
                                <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                            </optgroup>
                        <?php endif; ?>
                    </select>
                </div>
            </div>


            <div class="form-group">
                <div class="float-right">
                    <a target="_blank" href="<?php echo e(route('customer.dynamic-template.index')); ?>" class="text-muted">
                        <?php echo app('translator')->get('customer.download_sample'); ?>
                    </a>
                </div>
                <label for=""><?php echo e(trans('customer.Import_Dynamic_Template')); ?></label>
                <input type="file" name="import_file" class="form-control p-1" id="import-file">
            </div>


            <div class="form-group to-number-section pb-3" id="number_section">
                <label for="">Select To <span class="dynamic-c-select-to">(<?php echo e(trans('customer.choose_contact_number_column')); ?>)</span></label>
                <select name="to_number_key" id="campaignToNumber" class="select2-single compose-select" data-value=""
                        data-placeholder="<?php echo e(trans('customer.select_to_field')); ?>:">

                </select>
                <small class="float-right"><?php echo e(trans('customer.to_number_format')); ?>: +1-5850000000</small>
                <div class="text-right d-none">
                    Time zone (<b class="sms-text"><?php echo e(config('app.timezone')); ?></b>) Total Contacts (<b class="sms-text" id="contectCount">0</b>) || Total Message (<?php echo e(isset(json_decode(get_settings('local_setting'))->currency_symbol)?json_decode(get_settings('local_setting'))->currency_symbol:''); ?><b class="sms-text" id="amountCount">0</b>)
                </div>
            </div>

            <div class="form-group d-none" id="mms_section">
                <label for=""><?php echo e(trans('customer.Select_MMS_File')); ?></label>
                <input type="file" class="form-control p-1" multiple name="message_files[]">
            </div>

            <div class="row d-none" id="voice_section">
                <div class="col-md-6">
                    <label for=""><?php echo e(trans('Select Language')); ?></label>
                    <select name="language" class="form-control select2-single" >
                        <?php $__currentLoopData voice_sms_lang(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $lang): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                            <option value="<?php echo e($lang); ?>"><?php echo e(strtoupper($lang)); ?></option>
                        <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                    </select>
                </div>

                <div class="col-md-6">
                    <label for=""><?php echo e(trans('customer.Select_Gender')); ?></label>
                    <select name="voice_type" class="form-control">
                        <option value="men"><?php echo e(trans('admin.men')); ?></option>
                        <option value="women"><?php echo e(trans('customer.women')); ?></option>
                    </select>
                </div>

            </div>

            <div class="form-group">
                <label for=""><?php echo e(trans('customer.Message_Body')); ?></label>
                <textarea name="template_body" class="type_message form-control" autocomplete="off" type="text" placeholder="Type your message here..." cols="2" rows="2" id="message"></textarea>
                <div class="text-right">
                    <b id="smsCount" class="text-primary"></b> SMS (<b id="smsLength" class="text-primary"></b>) Characters left
                </div>
                <div id="dynamic_veriable">

                </div>
            </div>


            <input class="switch-input" name="check_schedule" type="hidden" id="switch-input">


            <div class="row mt-3 d-none">
                <div class="col-sm-8">
                    <div class="form-group">
                        <label for=""><?php echo e(trans('customer.phone_numbers')); ?></label>
                        <textarea readonly="readonly" name="to_number" id="phone_numbers" cols="4" rows="12" class="form-control"><?php echo e(old('to_number')?old('to_number'):''); ?></textarea>

                    </div>
                </div>
                <div class="col-sm-4">
                    <div class="form-group">
                        <label for="">Groups</label>
                        <div>
                            <?php $__currentLoopData $groups$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $group): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                <button type="button" data-id="<?php echo e($group->id); ?>"
                                        class="btn btn-primary group btn-sm mt-2"><?php echo e($group->name."(".$group->contacts_count.")"); ?></button>
                            <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                        </div>

                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

<input type="hidden" id="template_active_nav">
<input type="hidden" id="totalmessage">


<div class="modal fade" id="scheduleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
    <div class="modal-dialog modal-dialog-centered" role="document">
        <div class="modal-content">
            <div class="modal-header">
                <h5 class="modal-title" id="exampleModalLongTitle"><?php echo e(trans('customer.Schedule_Date_Time')); ?></h5>
                <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                    <span aria-hidden="true">&times;</span>
                </button>
            </div>
            <div class="modal-body">
                <div class="row">
                    <div class="form-group col-sm-6 col-6">
                        <label for=""><?php echo e(trans('customer.start_date')); ?></label>
                        <input name="start_date" value="<?php echo e(old('start_date')??(isset($campaign)??$campaign->start_date)); ?>" type='text' class="form-control datetimepicker date_range"/>
                    </div>
                    <div class="form-group col-sm-6 col-6">
                        <label for=""><?php echo e(trans('customer.end_date')); ?></label>
                        <input name="end_date" value="<?php echo e(old('end_date')??(isset($campaign)??$campaign->end_date)); ?>" type='text' class="form-control datetimepicker date_range"/>
                    </div>

                    <div class="form-group col-sm-6 col-6 mt-2">
                        <label for="start_time"><?php echo e(trans('customer.start_time')); ?></label>
                        <input id="start_time" name="start_time" value="<?php echo e(old('start_time')??(isset($campaign)?$campaign->start_time:'')); ?>" type='time' class="form-control "/>
                    </div>
                    <div class="form-group col-sm-6 col-6 mt-2">
                        <label for="end_time"><?php echo e(trans('customer.end_time')); ?></label>
                        <input id="end_time" max="23:59" name="end_time" value="<?php echo e(old('end_time')??(isset($campaign)?$campaign->end_time:'')); ?>" type='time' class="form-control"/>
                    </div>
                </div>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-secondary" data-dismiss="modal"><?php echo e(trans('customer.close')); ?></button>
                <button type="button"  class="btn btn-primary submit_campaign_form"><?php echo e(trans('customer.confirm')); ?></button>
            </div>
        </div>
    </div>
</div>



<?php /**PATH /home/picotech/domains/test.sms.picotech.app/public_html/resources/views/customer/dynamic_campaign/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.0056 ]--