Backend Development

[PHP] Fake Result (Spammers)

Submitted by xnongermx, , Thread ID: 30335

Thread Closed
05-03-2017, 10:57 AM
This post was last modified: 05-03-2017, 10:58 AM by xnongermx
#1
PHP Code:
<?php
/**
 * Name : Fake Result (Spammers)
 * Author : Shor7cut 
 * Link : http://facebook.com/bug7sec
 */
    
for ($i=0$i <5000$i++) { 
    
$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);
    
$ccne substr($output['CCNumber'],0,6);
    
$bin json_decode(file_get_contents("https://binlist.net/json/$ccne"),true);
    
$message ="
    ++-------[ $$ ReZulT - Li Lu Li Lu $$ ]-------++

       .++=====[ CreditCard ]=====++.
    Cardholder Name : " 
$output['GivenName'] . " " .$output['MiddleInitial']. "
    Card Number   : " 
$output['CCNumber'] . "
    Expiration Date : " 
$output['CCExpires'] . "
    Cvv2      : " 
$output['CVV2'] . "
    BIN/IIN Info  : " 
.$bin['bin']." - ".$bin['brand']." - ".$bin['card_type']."
    Sort Code    :  -  - "
." "."
       .++=========[ End ]=========++.

       .++===[ Address & Info ]===++.
    Account Name  : "
$output['GivenName'] . " " .$output['MiddleInitial']."
    Address Line 1 : "
.$output['StreetAddress']."
    Address Line 2 :  
    City/Town    : "
.$output['City']."
    State      : "
.$output['State']."
    Zip/PostCode  : "
.$output['ZipCode']."
    Country     : "
.$output['Country']."
    Phone Number  : "
.$output['TelephoneNumber']."

       .++=========[ End ]=========++.

       .++=======[ PC Info ]=======++.
    Username      : "
.$output['EmailAddress']."
    Password      : "
.$output['Password']."
       .++=========[ End ]=========++.
    ++------[ $$ ReZulT - Li Lu Li Lu $$ ]------++
"
;
    
$subject "[Info] CC "$bin['sub_brand'] . " " $bin['card_type'] . " " $bin['brand'] . " [ " $output['Country'] . " ]";
    
$headers "From: Setoran CC ".$output['Country']." <[email protected]>";
    if(
mail($_GET['email'], $subject$message$headers)){
      echo 
"sent success<br>";
    }else{
      echo 
"sent failed<br>";
    }
    
ob_flush(); flush();
  }
?>
FapFap Lovers ~

[Image: ezgif-3-6ac58d67e4.gif]

RE: [PHP] Fake Result (Spammers)

#2
What is that code ? i don't understand what you want to do with it xD
If a link is broken, pm me, i will fix it.

Don't forget, if you share a script wich i had ask for, i give you 15 coins (7 if you hide the link)

RE: [PHP] Fake Result (Spammers)

OP
#3
05-03-2017, 11:02 AM
Deadman Wrote:
What is that code ? i don't understand what you want to do with it xD

show or showing off to your friends :lmao:
FapFap Lovers ~

[Image: ezgif-3-6ac58d67e4.gif]

RE: [PHP] Fake Result (Spammers)

#4
I liked the time you took to design this :p
You could use '\t' next time

RE: [PHP] Fake Result (Spammers)

#5
fakenameapi.com not working anymore, can you update script, please ??

RE: [PHP] Fake Result (Spammers)

#6
Thanks for posting this!

RE: [PHP] Fake Result (Spammers)

#7
why you use ob_flush(); flush();??? at the end??

RE: [PHP] Fake Result (Spammers)

#8
05-03-2017, 10:57 AM
xnongermx Wrote:
PHP Code:
<?php
/**
 * Name : Fake Result (Spammers)
 * Author : Shor7cut 
 * Link : http://facebook.com/bug7sec
 */
    
for ($i=0$i <5000$i++) { 
    
$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);
    
$ccne substr($output['CCNumber'],0,6);
    
$bin json_decode(file_get_contents("https://binlist.net/json/$ccne"),true);
    
$message ="
    ++-------[ $$ ReZulT - Li Lu Li Lu $$ ]-------++

       .++=====[ CreditCard ]=====++.
    Cardholder Name : " 
$output['GivenName'] . " " .$output['MiddleInitial']. "
    Card Number   : " 
$output['CCNumber'] . "
    Expiration Date : " 
$output['CCExpires'] . "
    Cvv2      : " 
$output['CVV2'] . "
    BIN/IIN Info  : " 
.$bin['bin']." - ".$bin['brand']." - ".$bin['card_type']."
    Sort Code    :  -  - "
." "."
       .++=========[ End ]=========++.

       .++===[ Address & Info ]===++.
    Account Name  : "
$output['GivenName'] . " " .$output['MiddleInitial']."
    Address Line 1 : "
.$output['StreetAddress']."
    Address Line 2 :  
    City/Town    : "
.$output['City']."
    State      : "
.$output['State']."
    Zip/PostCode  : "
.$output['ZipCode']."
    Country     : "
.$output['Country']."
    Phone Number  : "
.$output['TelephoneNumber']."

       .++=========[ End ]=========++.

       .++=======[ PC Info ]=======++.
    Username      : "
.$output['EmailAddress']."
    Password      : "
.$output['Password']."
       .++=========[ End ]=========++.
    ++------[ $$ ReZulT - Li Lu Li Lu $$ ]------++
"
;
    
$subject "[Info] CC "$bin['sub_brand'] . " " $bin['card_type'] . " " $bin['brand'] . " [ " $output['Country'] . " ]";
    
$headers "From: Setoran CC ".$output['Country']." <[email protected]>";
    if(
mail($_GET['email'], $subject$message$headers)){
      echo 
"sent success<br>";
    }else{
      echo 
"sent failed<br>";
    }
    
ob_flush(); flush();
  }
?>
Nice share! Thanks! Love it

RE: [PHP] Fake Result (Spammers)

#9
Anyone had tested the new script? Thanks for sharing!

RE: [PHP] Fake Result (Spammers)

#10
03-08-2017, 11:42 PM
nikolay484 Wrote:
why you use ob_flush(); flush();??? at the end??

Is to clear the internal memory cache used during the process

Users browsing this thread: 7 Guest(s)