Server IP : 14.241.111.210 / Your IP : 18.119.157.234 Web Server : Apache System : Linux localhost.localdomain 3.10.0-1160.66.1.el7.x86_64 #1 SMP Wed May 18 16:02:34 UTC 2022 x86_64 User : www ( 1001) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/checkemail.webthanhha.com/ |
Upload File : |
<?php ignore_user_abort(true); ini_set('MAX_EXECUTION_TIME', 0); error_reporting(1); set_time_limit(0); error_reporting(E_ALL); ini_set('display_errors', 1); date_default_timezone_set('Asia/Ho_Chi_Minh'); echo date('Y-m-d H:i:s'); echo '<br>'; include('include/config_db.php'); $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } //echo "Connected successfully"; // Lọc trong db danh sách file có status = 6 (chờ check mail) $result2 = $conn->query("SELECT * FROM split_files WHERE status = 6 LIMIT 1"); echo 'Số file trong ds check:'. $result2->num_rows; echo '<br>'; //$fp = fopen('url-source1.txt', 'w'); if ($result2->num_rows > 0) { while($row2 = $result2->fetch_assoc()){ //https://check-emails.net/include/threading.php?id=26&file_id=167&hash=3-jm8DEA_CR76Hvdix5z94cMnekGNryBthUuqFQZ&status=6 $url = "$site/include/threading.php?id=".$row2['id']."&file_id=".$row2['file_id']."&hash=".$row2['hash']."&status=6"; //fwrite($fp, $url.PHP_EOL); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HEADER, true); $result2 = curl_exec($ch); echo $result2; } //fclose($fp); }else{ echo "<h2 style='text-align: center;'>No email list files are being verified.</h2>"; } $conn->close(); ?>