Over the past few months, we have received a lot of requests concerning the revision of our prices.
It’s now done on the batch file prices, with prices reduced by -60% on all our offers !
This offer will remain for life, even on our future services in preparation for file decompilation : PHP 8.0, 8.1, and more.
The Team DeZender
Please Log in or Create an account to join the conversation.
</span><?php
/**
*
* @ This file is created by deZender.Net
* @ deZender (PHP5 Decoder for ionCube Encoder)
*
* @ Version : 1.1.1.0
* @ Author : DeZender
* @ Release on : 2011.01.04
* @ Official site : http://DeZender.Net
*
*/
function forum_register($url, $vbid, $projeid, $username, $password, $email, $timezone, $y_yil, $y_ay, $y_gun) {
global $cc;
global $lang;
global $thread;
debuglog( $thread, $vbid, 'Oturum Başladı' );
$reg_start = time( );
$picurl = trim( $url );
$url = trim( $cc->mainurl( $url ) );
debuglog( $thread, $vbid, '' . 'Anaurl bulundu: ' . $url );
$reguu = $cc->get( $url );
debuglog( $thread, $vbid, '' . 'Anaurl verisi çekildi html
' . $reguu );
$mp = parse_url( $picurl );
if ($mp[host] == '') {
$mp[host] = 'hataliforumurlsi.com';
}
$mp[host] = str_replace( 'www.', '', $mp[host] );
debuglog( $thread, $vbid, '' . 'Anaurl parse edildi : ' . $mp['host'] );
if (( stristr( $reguu, 'phpBB Group' ) && !stristr( $url, 'modules.php' ) )) {
debuglog( $thread, $vbid, 'phpBB Olarak Tespit edildi' );
list( $murl, $reg_url ) = cwurl( $reguu, $url, 'ucp.php?mode=register', 'phpbb' );
debuglog( $thread, $vbid, ( '' . 'URL adresleri Ayıklandı : [' . $murl . ',' . $reg_url . ']' ) );
phpbb_register( $picurl, $murl, $reg_url, $vbid, $projeid, $username, $password, $email, $timezone, $y_yil, $y_ay, $y_gun );
return null;
}
if (( stristr( $reguu, 'var ipb_var_base_url' ) || stristr( $reguu, 'IP.Board' ) )) {
debuglog( $thread, $vbid, 'IPB Olarak Tespit edildi' );
list( $murl, $reg_url ) = cwurl( $reguu, $url, 'ipb_var_base_url', 'ipb' );
debuglog( $thread, $vbid, ( '' . 'URL adresleri Ayıklandı : [' . $murl . ',' . $reg_url . ']' ) );
ipb_register( $picurl, $murl, $reg_url, $vbid, $projeid, $username, $password, $email, $timezone, $y_yil, $y_ay, $y_gun );
return null;
}
if (( stristr( $reguu, 'Powered by SMF' ) || stristr( $reguu, 'simplemachines.org' ) )) {
debuglog( $thread, $vbid, 'SMF Olarak Tespit edildi' );
$picurl = str_replace( 'action=printpage', '', $picurl );
$reguu = $cc->get( $picurl );
list( $murl, $reg_url ) = cwurl( $reguu, $url, 'action=register', 'smf' );
debuglog( $thread, $vbid, ( '' . 'URL adresleri Ayıklandı : [' . $murl . ',' . $reg_url . ']' ) );
smf_register( $picurl, $murl, $reg_url, $vbid, $projeid, $username, $password, $email, $timezone, $y_yil, $y_ay, $y_gun );
return null;
}
if (( ( stristr( $reguu, 'powered by vBulletin' ) || stristr( $reguu, 'vb_login_md5password' ) ) || stristr( $reguu, 'vBulletin_init()' ) )) {
debuglog( $thread, $vbid, 'vBulletin Olarak Tespit edildi' );
list( $murl, $reg_url ) = cwurl( $reguu, $url, 'register', 'vbulletin' );
debuglog( $thread, $vbid, ( '' . 'URL adresleri Ayıklandı : [' . $murl . ',' . $reg_url . ']' ) );
vb_register( $picurl, $murl, $reg_url, $vbid, $projeid, $username, $password, $email, $timezone, $y_yil, $y_ay, $y_gun );
return null;
}
................
.......
Please Log in or Create an account to join the conversation.