PHP: <?php set_time_limit(0); ################## #Данные $email = ''; // E-mail $pass = ''; // Пароль $log = '1'; // 1 - Если нужно писать log-файл ################## #Авторизация function post($url,$post,$refer) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; ru; rv:1.9.0.4) Gecko/2008102920 AdCentriaIM/1.7 Firefox/3.0.4"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); curl_setopt($ch, CURLOPT_REFERER, $refer); curl_setopt($ch, CURLOPT_COOKIEJAR, "./cook"); curl_setopt($ch, CURLOPT_COOKIEFILE, "./cook"); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $result = curl_exec($ch); return $result; } $result = post('http://vkontakte.ru/',null,'http://vkontakte.ru/'); /* Если куки "умерли", то авторизовываемся... */ if (preg_match('#l">E(.*?)<#i',$result,$avtoriz)) { $result = post('http://login.vk.com/','act=login&success_url=&fail_url=&try_to_login=1&to=&vk=&email='.$email.'&pass='.$pass,'http://vkontakte.ru/login.php?m=1&email='.$email); ################## #Записываем в логи if ($log == "1") { $fh = fopen("log.txt", "a+"); $success - fwrite($fh, "Авторизация [".date("H:i")."]\r\n"); fclose($fh); } } else { if ($log == "1") { /* ...иначе пишем, что авторизация не потребовалась */ $fh = fopen("log.txt", "a+"); $success - fwrite($fh, "Работа через cookie [".date("H:i")."]\r\n"); fclose($fh); } } ################## ?> И так на каждый аккаунт
Включен safe мод на сервере, попробуй вставить в начало скрипта Code: ini_set('safe_mode',0); ini_set('open_basedir',0); Warning: set_time_limit() has been disabled for security reasons Удали строку 2.
PHP: $display[] = " << " . $nic . " >> "; $data_auth = "?act=login&vk=vk&email=".$email."&pass=".$pass.""; $delling = false; if ( $message == 1 ) print "Проверяем <b>" .$nic. "</b> на работоспасобность ..."; flush(); do { $connect = get_page_html( 'http://login.vk.com', $proxy, $data_auth, 1 ); flush(); if ( strstr ( $connect, 'good') !== false ) { preg_match_all ( "/good(.*)/", $connect, $id ); preg_match_all('#Set-cookie: (.*?;) ex#UiS', $connect, $cookie ); print_r($cookie); if ( !empty( $cookie[1][3] ) ) { for ( $c = 0; $c < count( $cookie[1] ); $c++) { $Cookies .= $cookie[1][$c]; } if ( strstr ( $Cookies , 'remixlang' ) !== true ) { $Cookies .= 'remixlang=0;remixchk=5;'; } //=========================================// print "Ok!<br />\n"; flush(); Подскажите что здесь подправить чтобы авторизовывалось.
Ловите школяры) demo: http://checkme.200u.com/vk/ download: http://narod.ru/disk/16014082000/vk_auth_by_OliShort.rar.html php + curl нужен