!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/picomail.picotech.app/public_html/public/js/customer/   drwxr-xr-x
Free 28.39 GB of 117.98 GB (24.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     list_builder.js (3.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
"use strict";
$(document).on('change', '#sent_type', function (e){
    const type = $(this).val();
    if (type=='between'){
        $('.between_date').removeClass('d-none');
        $('#days_section').addClass('d-none');
        $('.days_section').addClass('d-none');
    }else if(type=='empty'){
        $('#days_section').addClass('d-none');
        $('.between_date').addClass('d-none');
        $('#between_date').addClass('d-none');
    } else{
        $('.between_date').addClass('d-none');
        $('#days_section').removeClass('d-none');
        $('.days_section').removeClass('d-none');
    }
});
$(document).on('change', '#email_received_type', function (e){
    const type = $(this).val();
    if (type=='between'){
        $('.email_received_between_date').removeClass('d-none');
        $('#email_received_days_section').addClass('d-none');
        $('.email_received_days_section').addClass('d-none');
    }else if(type=='empty'){
        $('.email_received_days_section').addClass('d-none');
        $('#email_received_days_section').addClass('d-none');
        $('.email_received_between_date').addClass('d-none');
    } else{
        $('.email_received_between_date').addClass('d-none');
        $('#email_received_days_section').removeClass('d-none');
        $('.email_received_days_section').removeClass('d-none');
    }
});

$('.between_dates').daterangepicker({
    autoUpdateInput: true,
    singleDatePicker: true,
    timePicker: true,
    locale: {
        format: 'MM/DD/YYYY hh:mm A'
    }
});

$('#groups').on('change',function (e) {
    e.preventDefault();
    $('#group_ids').val(JSON.stringify($(this).val()));
});

$('#groupForm').validate({
    rules: {
        name: {
            required: true
        }
    },
    messages: {
        name: {required: "Please provide  name"},
    },
    errorElement: 'span',
    errorPlacement: function (error, element) {
        error.addClass('invalid-feedback');
        element.closest('.form-group').append(error);
    },
    highlight: function (element, errorClass, validClass) {
        $(element).addClass('is-invalid');
    },
    unhighlight: function (element, errorClass, validClass) {
        $(element).removeClass('is-invalid');
    }
});

$(function () {
    //Initialize Select2 Elements
    $('.select2').select2();
});

$(document).on('click', '#addNewGroupBtn', function (e) {
    const name = $('#group_name').val();
    if(!name){
        toastr.error('Please enter group name', 'failed', {timeOut: 9000});
        return;
    }
    $.ajax({
        method: "post",
        url: '/new-group',
        data: {
            _token:csrf_token,
            name:name,
            filter:JSON.stringify(filterData)
        },
        success: function (res) {
            if (res.status == 'success') {
                toastr.success(res.message, 'success', {timeOut: 9000});
                $('#modal-default').modal('hide');
                location.href='/groups';
            }else{
                toastr.error(res.message, 'failed', {timeOut: 9000});
            }
        }

    });
});

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