Advertisement
bug7sec

Fake Result (Spammers)

Apr 27th, 2016
1,493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.27 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Name : Fake Result (Spammers)
  4.  * Author : Shor7cut
  5.  * Link : http://facebook.com/bug7sec
  6.  */
  7.        for ($i=0; $i <5000; $i++) {
  8.         $output = json_decode(file_get_contents("https://v5.fakenameapi.com/generate?app_id=0fb9dcd2&app_key=209d6fbe662063209e85f1adc9d4f59c&country=us&name-set=us&gender=random&minimum-age=19&maximum-age=85&output=json&human=false"),true);
  9.         $ccne = substr($output['CCNumber'],0,6);
  10.         $bin = json_decode(file_get_contents("https://binlist.net/json/$ccne"),true);
  11.         $message ="
  12.        ++-------[ $$ ReZulT - Li Lu Li Lu $$ ]-------++
  13.  
  14.              .++=====[ CreditCard ]=====++.
  15.        Cardholder Name :  " . $output['GivenName'] . " " .$output['MiddleInitial']. "
  16.        Card Number     :  " . $output['CCNumber'] . "
  17.        Expiration Date :  " . $output['CCExpires'] . "
  18.        Cvv2            :  " . $output['CVV2'] . "
  19.        BIN/IIN Info    :  " .$bin['bin']." - ".$bin['brand']." - ".$bin['card_type']."
  20.        Sort Code       :    -   - "." "."
  21.              .++=========[ End ]=========++.
  22.  
  23.              .++===[ Address & Info ]===++.
  24.        Account Name    :  ". $output['GivenName'] . " " .$output['MiddleInitial']."
  25.        Address Line 1  :  ".$output['StreetAddress']."
  26.        Address Line 2  :  
  27.        City/Town       :  ".$output['City']."
  28.        State           :  ".$output['State']."
  29.        Zip/PostCode    :  ".$output['ZipCode']."
  30.        Country         :  ".$output['Country']."
  31.        Phone Number    :  ".$output['TelephoneNumber']."
  32.  
  33.              .++=========[ End ]=========++.
  34.  
  35.              .++=======[ PC Info ]=======++.
  36.        Username            :  ".$output['EmailAddress']."
  37.        Password            :  ".$output['Password']."
  38.              .++=========[ End ]=========++.
  39.        ++------[ $$ ReZulT - Li Lu Li Lu $$ ]------++
  40. ";
  41.         $subject = "[Info] CC ". $bin['sub_brand'] . " " . $bin['card_type'] . " " . $bin['brand'] . " [ " . $output['Country'] . " ]";
  42.         $headers = "From: Setoran CC ".$output['Country']." <cc_rezult@logikagalau.id>";
  43.         if(mail($_GET['email'], $subject, $message, $headers)){
  44.             echo "sent success<br>";
  45.         }else{
  46.             echo "sent failed<br>";
  47.         }
  48.        ob_flush(); flush();
  49.    }
  50. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement