how to use php
sir benoit maybe you can make a download site for php5 with mcrypt and curl
sir benoit maybe you can make a download site for php5 with mcrypt and curl
<?php
$fbid = 'YOUR UID HERE';
$tiket='YOUR TICKET HERE';
$key='typeconfig.sys^_-';
$time=time();
$base='HjWHw33M2EQYgK1AUFZGbs6+uZHLz8o4PH0vgUnSxN+VMyPc5v5CKDn2/dPcvATpi6gTYQ01Z0EAy2IRxN2fIFGJz83zSCjMDlMj6hknPLDVP/DONshoUK1PF+8HlVlJs5tiHnnc3q5L0U87k39OcsgDS41ga41TmfCAsnHnSNzCHB33Mh/5bWGT+QsbcBIyHs4s10oJ5w+8CTvphxE0w5jYALPTDNHjX2TEYULKJyklBgpYg6s4PQ==';
$td = mcrypt_module_open(MCRYPT_BLOWFISH, '', MCRYPT_MODE_ECB, '');
$iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($td), MCRYPT_RAND);
mcrypt_generic_init($td, $key, $iv);
$p_t = mdecrypt_generic($td, base64_decode($base));
$reply1 = base64_encode(mcrypt_generic($td, $p_t));
while(1) {
$bodytag = str_replace('1354616416384', $time, $p_t);
$bodytag = str_replace('"currencyType":"3"', '"currencyType":"2"', $p_t);
$bodytag = str_replace('"trid":6614', '"trid":'.rand(6000,7000), $bodytag);
$bodytag = str_replace('1385928695', $fbid, $bodytag);
$bodytag = str_replace('5A69E5F2C061B75B8116143570313343', $tiket, $bodytag);
$bodytag = str_replace('1354621464352', time().rand(100,900), $bodytag);
$reply1 = base64_encode(mcrypt_generic($td, $bodytag));
$rep = file_get_contents('http://tbc.tetrisfb.com/api/purchase?length='.strlen($bodytag).'&ejson='.$reply1);
var_dump(mdecrypt_generic($td, base64_decode($rep)));
}
?>
I have base coded for take less size I don't hide any virus, for php you can download Wamp and use PHP included inQuote:
Code:<?php $fbid = 'YOUR UID HERE'; $tiket='YOUR TICKET HERE'; $key='typeconfig.sys^_-'; $time=time(); $base='HjWHw33M2EQYgK1AUFZGbs6+uZHLz8o4PH0vgUnSxN+VMyPc5v5CKDn2/dPcvATpi6gTYQ01Z0EAy2IRxN2fIFGJz83zSCjMDlMj6hknPLDVP/DONshoUK1PF+8HlVlJs5tiHnnc3q5L0U87k39OcsgDS41ga41TmfCAsnHnSNzCHB33Mh/5bWGT+QsbcBIyHs4s10oJ5w+8CTvphxE0w5jYALPTDNHjX2TEYULKJyklBgpYg6s4PQ=='; $td = mcrypt_module_open(MCRYPT_BLOWFISH, '', MCRYPT_MODE_ECB, ''); $iv = mcrypt_create_iv (mcrypt_enc_get_iv_size($td), MCRYPT_RAND); mcrypt_generic_init($td, $key, $iv); $p_t = mdecrypt_generic($td, base64_decode($base)); $reply1 = base64_encode(mcrypt_generic($td, $p_t)); while(1) { $bodytag = str_replace('1354616416384', $time, $p_t); $bodytag = str_replace('"currencyType":"3"', '"currencyType":"2"', $p_t); $bodytag = str_replace('"trid":6614', '"trid":'.rand(6000,7000), $bodytag); $bodytag = str_replace('1385928695', $fbid, $bodytag); $bodytag = str_replace('5A69E5F2C061B75B8116143570313343', $tiket, $bodytag); $bodytag = str_replace('1354621464352', time().rand(100,900), $bodytag); $reply1 = base64_encode(mcrypt_generic($td, $bodytag)); $rep = file_get_contents('http://tbc.tetrisfb.com/api/purchase?length='.strlen($bodytag).'&ejson='.$reply1); var_dump(mdecrypt_generic($td, base64_decode($rep))); } ?>