Advertisement
Guest User

автореггер перф

a guest
Aug 28th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2.  
  3. for($i=1; $i<=100; ++$i)
  4. {
  5. $perf = curl_init('http://perf-engine.net/user/sign_up?');
  6. curl_setopt($perf,CURLOPT_USERAGENT,$_SERVER['HTTP_USER_AGENT']);
  7. curl_setopt($perf,CURLOPT_REFERER,'http://perf-engine.net/user/sign_up');
  8. curl_setopt($perf,CURLOPT_TIMEOUT,30);
  9. curl_setopt($perf, CURLOPT_POST, true);
  10. curl_setopt($perf, CURLOPT_POSTFIELDS, 'nick=bitoxer'.mt_rand(100,9999).'&name=пентестер&gender=1&email=vitamin'.mt_rand(100,999).'@mail.ru&password=123456&password2=123456&user_reg=Регистрация');
  11. curl_setopt($perf, CURLOPT_RETURNTRANSFER,true);
  12. $PerfReg = curl_exec($perf);
  13. echo $PerfReg;
  14. curl_close($perf);
  15.  
  16. }
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement