Can decode?
-
-
Hello,
You will find a first part of your decrypted file, to get the rest please place an order on our online store.The team DeZender
Code
Display More<?php /** * *?@?This?file?is?created?by?deZender.Net *?@?deZender?(PHP5?Decoder?for?ionCube?Encoder) * *?@????Version????????????:????1.1.3.0 *?@????Author????????????:????DeZender *?@????Release?on????????:????17.05.2011 *?@????Official?site????:????http://DeZender.Net * */ ????class?session?{ ????????var?$conf?=?array(??); ????????var?$auth?=?false; ????????function?login()?{ ????????????global?$DB; ????????????global?$PREFS; ????????????if?((?isset(?$_POST['islogin']?)?&&?$_POST['islogin']?))?{ ????????????????$username?=?((?isset(?$_POST['username']?)?&&?$_POST['username']?)???trim(?$_POST['username']?)?:?''); ????????????????$password?=?((?isset(?$_POST['password']?)?&&?$_POST['password']?)???trim(?$_POST['password']?)?:?''); ????????????????$sessdata?=?$this->get_session_data(??); ????????????????$_SESSION['logintime']?=?$sessdata['logintime']; ????????????????$_SESSION['logincount']?=?$sessdata['logincount']?+?1; ????????????????if?($_SESSION['logincount']?<=?$PREFS->conf['lockout_tries'])?{ ????????????????????$_SESSION['logintime']?=?time(??); ????????????????} ????????????????if?($_SESSION['logintime']?<=?time(??)?-?$PREFS->conf['lockout_time']?*?60)?{ ????????????????????$_SESSION['logincount']?=?1; ????????????????} ????????????????setcookie(?'sessdata',?@serialize(?array(?'logintime'?=>?$_SESSION['logintime'],?'logincount'?=>?$_SESSION['logincount']?)?),?$_SESSION['logintime']?+?60?*?$PREFS->conf['lockout_time'],?'/'?); ????????????????if?((?(?$username?!=?''?&&?$password?!=?''?)?&&?(?!$PREFS->conf['lockout_password']?||?$_SESSION['logincount']?<?$PREFS->conf['lockout_tries']?)?))?{ ????????????????????$username?=?$DB->add_slashes(?$username?); ????????????????????$password?=?$DB->add_slashes(?$password?); ????????????????????$result?=?$DB->query(?'SELECT?m.*,?c.* ????????????????????FROM?'?.?DB_PREFIX?.?'members?as?m,?'?.?DB_PREFIX?.?'members_conf?as?c ????????????????????WHERE?'?.?(strpos(?$username,?'@'?)?===?false???''?.?'m.username=\''?.?$username?.?'\''?:?''?.?'m.email=\''?.?$username?.?'\'')?.?'?AND?m.password=\''?.?md5(?$password?)?.?'\'?AND?m.member_id=c.conf_id?AND?m.active=\'1\'?LIMIT?1'?); ????????????????????if?($DB->num_rows(?$result?)?==?1)?{ ????????????????????????$obj?=?$DB->fetch_array(?$result,?MYSQL_ASSOC?); ????????????????????????$this->conf?=?$obj; ????????????????????????$this->conf?=?array_merge(?$this->conf,?$PREFS->get_permissions(?$obj['group_id']?)?); ????????????????????????if?($this->conf['can_login'])?{ ????????????????????????????$this->conf['is_logged_in']?=?1; ????????????????????????????$this->conf['session_ip']?=?$this->get_ip(??); ????????????????????????????$this->conf['session_id']?=?session_id(??); ????????????????????????????$this->conf['member_code']?=?md5(?$obj['email']?.?$obj['password']?); ????????????????????????????$this->conf['member_email']?=?$obj['email']; ????????????????????????????$this->conf['member_name']?=?htmlentities2utf8(?$obj['username']?); ????????????????????????????$this->conf['username']?=?htmlentities2utf8(?$obj['username']?); ????????????????????????????$DB->query(?'UPDATE?'?.?DB_PREFIX?.?'members ????????????????????????????SET?lastvisit=\''?.?time(??)?.?'\',?totalvisits=totalvisits+1 ????????????????????????????????'?.?((?$this->conf['expirationdate']?&&?$this->conf['expirationdate']?<?time(??)?)???',?expirationdate=\'0\',?group_id=\''?.?($obj['old_group_id']???$obj['old_group_id']?:?$PREFS->conf['regular_member_group'])?.?'\''?:?'')?.?' ????????????????????????????WHERE?member_id=\''?.?$this->conf['member_id']?.?'\'?LIMIT?1'?); ................ .........? -
Quote from "DeZender":84xxaucp
Hello,
You will find a first part of your decrypted file, to get the rest please place an order on our online store.The team DeZender
Code
Display More<?php /** * * @ This file is created by deZender.Net * @ deZender (PHP5 Decoder for ionCube Encoder) * * @ Version : 1.1.3.0 * @ Author : DeZender * @ Release on : 17.05.2011 * @ Official site : http://DeZender.Net * */ class session { var $conf = array( ); var $auth = false; function login() { global $DB; global $PREFS; if (( isset( $_POST['islogin'] ) && $_POST['islogin'] )) { $username = (( isset( $_POST['username'] ) && $_POST['username'] ) ? trim( $_POST['username'] ) : ''); $password = (( isset( $_POST['password'] ) && $_POST['password'] ) ? trim( $_POST['password'] ) : ''); $sessdata = $this->get_session_data( ); $_SESSION['logintime'] = $sessdata['logintime']; $_SESSION['logincount'] = $sessdata['logincount'] + 1; if ($_SESSION['logincount'] <= $PREFS->conf['lockout_tries']) { $_SESSION['logintime'] = time( ); } if ($_SESSION['logintime'] <= time( ) - $PREFS->conf['lockout_time'] * 60) { $_SESSION['logincount'] = 1; } setcookie( 'sessdata', @serialize( array( 'logintime' => $_SESSION['logintime'], 'logincount' => $_SESSION['logincount'] ) ), $_SESSION['logintime'] + 60 * $PREFS->conf['lockout_time'], '/' ); if (( ( $username != '' && $password != '' ) && ( !$PREFS->conf['lockout_password'] || $_SESSION['logincount'] < $PREFS->conf['lockout_tries'] ) )) { $username = $DB->add_slashes( $username ); $password = $DB->add_slashes( $password ); $result = $DB->query( 'SELECT m.*, c.* FROM ' . DB_PREFIX . 'members as m, ' . DB_PREFIX . 'members_conf as c WHERE ' . (strpos( $username, '@' ) === false ? '' . 'm.username=\'' . $username . '\'' : '' . 'm.email=\'' . $username . '\'') . ' AND m.password=\'' . md5( $password ) . '\' AND m.member_id=c.conf_id AND m.active=\'1\' LIMIT 1' ); if ($DB->num_rows( $result ) == 1) { $obj = $DB->fetch_array( $result, MYSQL_ASSOC ); $this->conf = $obj; $this->conf = array_merge( $this->conf, $PREFS->get_permissions( $obj['group_id'] ) ); if ($this->conf['can_login']) { $this->conf['is_logged_in'] = 1; $this->conf['session_ip'] = $this->get_ip( ); $this->conf['session_id'] = session_id( ); $this->conf['member_code'] = md5( $obj['email'] . $obj['password'] ); $this->conf['member_email'] = $obj['email']; $this->conf['member_name'] = htmlentities2utf8( $obj['username'] ); $this->conf['username'] = htmlentities2utf8( $obj['username'] ); $DB->query( 'UPDATE ' . DB_PREFIX . 'members SET lastvisit=\'' . time( ) . '\', totalvisits=totalvisits+1 ' . (( $this->conf['expirationdate'] && $this->conf['expirationdate'] < time( ) ) ? ', expirationdate=\'0\', group_id=\'' . ($obj['old_group_id'] ? $obj['old_group_id'] : $PREFS->conf['regular_member_group']) . '\'' : '') . ' WHERE member_id=\'' . $this->conf['member_id'] . '\' LIMIT 1' ); ................ .........Hello,
My Order Number: 329
Thanks
-
I sent your decrypted file to your email box.
Good reception. ;)
Participate now!
Don’t have an account yet? Register yourself now and be a part of our community!