| Server IP : 103.82.32.14 / Your IP : 216.73.217.55 Web Server : Apache/2.2.32 (Unix) mod_ssl/2.2.32 OpenSSL/1.0.1e-fips mod_fcgid/2.3.9 System : Linux cloud.lonmanhoabinh.com 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : lonmakmf ( 524) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /home/rubymnik/public_html/ |
Upload File : |
<?php
include 'configchannelupdate.php';
if(isset($_GET['getlistchannel']))
{
$result = Select('ViewYoutube_ChannelBuff', false);
while($res = mysqli_fetch_array($result))
{
$list[] = $res['IdChannel'] . ':' . $res['KeywordControl'] . ",";
}
shuffle($list);
foreach($list as $key => $item)
{
$data .= $item;
}
echo rtrim($data, ':');
}
else if(isset($_GET['comment']))
{
$result = Select('ViewYoutube_Comment', false);
while($res = mysqli_fetch_array($result))
{
$listEx = explode(',', $res['Keywords']);
foreach($listEx as $key => $item)
{
if(strpos(strtolower($_GET['comment']), $item))
{
$skuList = explode(PHP_EOL, $res['CommentList']);
$comment = $skuList[rand(0, (count(explode(PHP_EOL, $res['CommentList']))-1))];
echo $comment;
return;
}
}
}
}
else if(isset($_GET['email']))
{
$soLuong = $_REQUEST['email'];
if(isset($_GET['serverget']))
{
$result = mysqli_fetch_assoc(Select('ViewYoutube_Server', false, '`NameVPS` LIKE "'.mysql_real_escape_string($_GET['serverget']).'"'));
if($result['NameVPS'] != '')
{
$result = Select('ViewYoutube_Email', false, '`ServerUsing` = '.$result['Id'].' LIMIT ' . $soLuong);
}
else
{
$result = Select('ViewYoutube_Email', false, '`ServerUsing` = 0 LIMIT ' . $soLuong);
}
}
else
{
$result = Select('ViewYoutube_Email', false, '`ServerUsing` = 0 LIMIT ' . $soLuong);
}
echo '<textarea style="width: 500px; height: 500px;">';
$dem = 0;
while($res = mysqli_fetch_array($result))
{
if(empty($res['Cookies']))
{
echo $res['Email'] . ' ' . $res['Password'] . ' ' . $res['MailKhoiPhuc'] . "\n";
}
else
{
echo $res['Email'] . ' ' . $res['Password'] . ' ' . $res['MailKhoiPhuc'] . ' ' . $res['Cookies'] . "\n";
}
$dem++;
}
echo '</textarea><br/>';
echo 'Tổng: ' . $dem . ' Email';
}
else if(isset($_REQUEST['getserver']))
{
$getserver = $_REQUEST['getserver'];
if(isset($_REQUEST['updateemailusing']))
{
$getemail = $_REQUEST['updateemailusing'];
$result = mysqli_fetch_assoc(Select('ViewYoutube_Server', false, '`NameVPS` LIKE "'.mysql_real_escape_string($getserver).'"'));
if($result['NameVPS'] != '')
{
Update('ViewYoutube_Email', array('ServerUsing' => $result['Id']), '`Email` LIKE "'.mysql_real_escape_string($getemail).'"');
}
}
else
{
$result = mysqli_fetch_assoc(Select('ViewYoutube_Server', false, '`NameVPS` LIKE "'.mysql_real_escape_string($getserver).'"'));
if($result['NameVPS'] != '')
{
echo json_encode($result);
}
}
}