X
xxffgg
Гость
Всем привет ! Возможно сделать скрипт автоматической смены пароля на gmail с помощью cUrl!Вот мой кусок кода но он не не заходит в Аккаунт $ch = curl_init();curl_setopt ($ch, CURLOPT_URL, "https://accounts.google.com/ServiceLogin");curl_setopt ($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_COOKIEJAR,"/cookie.txt");curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // this line makes it work under httpscurl_setopt ($ch, CURLOPT_POSTFIELDS, "Email=test&Passwd=teest");curl_exec ($ch);curl_close ($ch);