Advertisement
0xCor3

mztr

May 20th, 2018
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. <?php
  2. /**
  3.  
  4. Coded by 0xCor3 | Security Ghost Team
  5. fb/www.zeldin.go.id
  6. ig @_zelsaddr
  7.  
  8. **/
  9. function curl_get($url){
  10. $curl = curl_init();
  11. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  12. curl_setopt($curl, CURLOPT_URL, $url);
  13. curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)");
  14. $cx = curl_exec($curl);
  15. curl_close($curl);
  16. return($cx);
  17. }
  18. function C_option(){
  19. $p = "\033[0m";
  20. $h = "\033[32m";
  21. $k = "\033[33m";
  22. $b = "\033[34m";
  23. echo $p."Option : \n";
  24. echo $h."\t1 => YT Downloader \n".$k;
  25. echo "\t2 => Md5 Mass Cracker \n".$h;
  26. echo "\t3 => Defacer.Id Mass Notifier \n".$k;
  27. echo "\t4 => Zone-H Mass Notifier \n".$h;
  28. }
  29. // COLOR
  30. $m = "\033[31m";
  31. $p = "\033[0m";
  32. $h = "\033[32m";
  33. $k = "\033[33m";
  34. $b = "\033[34m";
  35. // COLOR END
  36. $banner = $m."\n
  37. =========================================================================
  38. => ███████╗███████╗ ██████╗ ██████╗ ██╗ ██╗ ██████╗ ███████╗████████╗ <=
  39. => ██╔════╝██╔════╝██╔════╝██╔════╝ ██║ ██║██╔═══██╗██╔════╝╚══██╔══╝ <=
  40. => ███████╗█████╗ ██║ ██║ ███╗███████║██║ ██║███████╗ ██║ <=
  41. => ╚════██║██╔══╝ ██║ ██║ ██║██╔══██║██║ ██║╚════██║ ██║ <=
  42. => ███████║███████╗╚██████╗╚██████╔╝██║ ██║╚██████╔╝███████║ ██║ <=
  43. => ╚══════╝╚══════╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚══════╝ ╚═╝ <=
  44. => [ Online Tools ] <=
  45. => Version : 1.0 | Author : 0xCor3 <=
  46. => FansPage : SecGhost | IG : @_zelsaddr <=
  47. =========================================================================
  48. \n";
  49. print $banner;
  50.  
  51. C_option();
  52. echo $p."Select Option : "; $option = trim(fgets(STDIN));
  53. if($option == "2"){
  54. echo "list : "; $list = trim(fgets(STDIN));
  55. $file = file_get_contents($list);
  56. $total = explode("\n", $file);
  57. foreach($total as $z){
  58. echo $z;
  59. }
  60. }
  61. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement