Advertisement
Black_Cracker

CloudFlare Bypass [PHP]

Jul 1st, 2016
614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <?php
  2.  
  3. $banner = " _ _ _ ____ _ _ _____ _
  4. / \ _ __ | |_(_) / ___| | ___ _ _ __| | ___| | __ _ _ __ ___
  5. / _ \ | '_ \| __| | | | | |/ _ \| | | |/ _` | |_ | |/ _` | '__/ _ \
  6. / ___ \| | | | |_| | | |___| | (_) | |_| | (_| | _| | | (_| | | | __/
  7. /_/ \_\_| |_|\__|_| \____|_|\___/ \__,_|\__,_|_| |_|\__,_|_| \___|
  8.  
  9. ";
  10.  
  11. echo $banner;
  12.  
  13. $target = readline("Enter your CloudFlare Website : ");
  14.  
  15. $curl = curl_init();
  16. curl_setopt($curl , CURLOPT_URL, "http://www.crimeflare.com/cgi-bin/cfsearch.cgi");
  17. curl_setopt($curl , CURLOPT_POST ,1);
  18. curl_setopt($curl , CURLOPT_HEADER ,0);
  19. curl_setopt($curl , CURLOPT_RETURNTRANSFER , true);
  20. curl_setopt($curl , CURLOPT_POSTFIELDS , "cfS=$target");
  21. $result = curl_exec($curl);
  22.  
  23. $check=preg_match_all("|<LI>(.*)|", $result, $match);
  24.  
  25. if ($check == null) {
  26. echo "Invalid CloudFlare Website\n";
  27. } else {
  28. print_r($match);
  29. }
  30.  
  31. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement