03-26-2017, 01:15 PM
(03-25-2017 09:19 AM)meassana Wrote: [ -> ]Can anyone null it ? cos without nulling, we can't use it. Thanks
VTGram v2.0 encode with ioncube, it add more difficulties to null
(03-25-2017 09:19 AM)meassana Wrote: [ -> ]Can anyone null it ? cos without nulling, we can't use it. Thanks
<?php (defined('BASEPATH')) OR exit('No direct script access allowed');
require dirname(__FILE__).'/Base.php';
class MX_Controller
{
public $autoload = array();
public function __construct()
{
$class = str_replace(CI::$APP->config->item('controller_suffix'), '', get_class($this));
log_message('debug', $class." MX_Controller Initialized");
Modules::$registry[strtolower($class)] = $this;
/* copy a loader instance and initialize */
$this->load = clone load_class('Loader');
$this->load->initialize($this);
$CI = &get_instance();
$MAXIMUM_ACCOUNT = 0;
$settings = $CI->db->select("*")->get(SETTINGS_TB)->row();
if(!empty($settings)){
if(!defined('LOGO'))
define("LOGO", BASE.$settings->logo);
if(!defined('TITLE'))
define("TITLE", $settings->title);
if(!defined('DESCRIPTION'))
define("DESCRIPTION", $settings->description);
if(!defined('KEYWORDS'))
define("KEYWORDS", $settings->keywords);
if(!defined('THEME'))
define("THEME", $settings->theme);
if(!defined('AUTO_ACTIVE_USER'))
define("AUTO_ACTIVE_USER", $settings->auto_active_user);
if(!defined('REGISTER_ALLOWED'))
define("REGISTER_ALLOWED", $settings->register);
if(!defined('TIMEZONE'))
define("TIMEZONE", $settings->default_timezone);
if(!defined('LANGUAGE'))
define("LANGUAGE", session('lang')?session('lang'):$settings->default_language);
if(!defined('DEFAULT_DEPLAY'))
define("DEFAULT_DEPLAY", $settings->default_deplay);
if(!defined('MINIMUM_DEPLAY'))
define("MINIMUM_DEPLAY", $settings->minimum_deplay);
if(!defined('GOOGLE_API_KEY'))
define("GOOGLE_API_KEY", $settings->google_api_key);
if(!defined('FACEBOOK_ID'))
define("FACEBOOK_ID", $settings->facebook_id);
if(!defined('FACEBOOK_SECRET'))
define("FACEBOOK_SECRET", $settings->facebook_secret);
if(!defined('GOOGLE_ID'))
define("GOOGLE_ID", $settings->google_id);
if(!defined('GOOGLE_SECRET'))
define("GOOGLE_SECRET", $settings->google_secret);
if(!defined('TWITTER_ID'))
define("TWITTER_ID", $settings->twitter_id);
if(!defined('TWITTER_SECRET'))
define("TWITTER_SECRET", $settings->twitter_secret);
$CI->input->set_cookie('uploadMaxSize', $settings->upload_max_size, 86400);
date_default_timezone_set(TIMEZONE);
$MAXIMUM_ACCOUNT = $settings->maximum_account;
}
if(!defined('NOW'))
define("NOW",date("Y-m-d H:i:s"));
if(!session('uid')
and& segment(1) != ""
and& segment(1) != 'openid'
and& segment(1) != 'cronjob'
and& segment(1) != 'cronjob2'
and& segment(1) != 'cronjob3'
and& segment(1) != 'cronjob4'
and& segment(1) != 'cronjob5'
and& segment(1) != 'cronjob6'
and& segment(1) != 'cronjob7'
and& segment(1) != 'verify'
and& segment(2) != 'ajax_verify'
and& segment(2) != 'ajax_login'
and& segment(2) != 'ajax_register'
and& segment(1) != 'lang'){
redirect(PATH);
}
$users = $CI->db->select("*")->where('id', session('uid'))->get(USERS_TB)->row();
if(!empty($users)){
$accounts = $CI->db->select("*")->where('uid', session('uid'))->get(INSTAGRAM_ACCOUNT_TB)->result();
if(!defined('COUNT_ACCOUNT'))
define("COUNT_ACCOUNT", count($accounts));
$MAXIMUM_ACCOUNT = $users->maximum_account;
}
if(!defined('MAXIMUM_ACCOUNT'))
define("MAXIMUM_ACCOUNT", $MAXIMUM_ACCOUNT);
/* autoload module items */
$this->load->_autoloader($this->autoload);
}
public function __get($class)
{
return CI::$APP->$class;
}
}
(04-13-2017 08:53 AM)satwhow Wrote: [ -> ]NULLING THE 2.0 VERSION
I have not tested all the features, but the "AUTO POST" feature is working perfectly, which for me was what mattered.
Test the other features and give the feedback in this post
Change the content of /app/third_party/MX/Controller.php
by this:
<removed by huuloc4193>
Don't Forget to add Rep++
(04-14-2017 01:37 AM)satwhow Wrote: [ -> ]Step-by-step
http://www59.zippyshare.com/v/U0Kk81Jd/file.html
First do not use auto install. Perform manual installation.
1. Run the database.sql inside the install folder, and generate a md5 password for the first user in the table 'tbl_users'
2. In index.php change
"define('ENVIRONMENT', 'installation');"
for
"define('ENVIRONMENT', 'production');"
In the file sent i made this change.
3. In /app/config.php update with the db credentials
4. You can now log in with the username and password you generated in 'tbl_users'
Note: I did not need to place the "Purchase code", because I changed the "MX_Controller" class that does the validation.
Okay, now enjoy.
I think can create a thread, only for nulled
(04-14-2017 01:37 AM)satwhow Wrote: [ -> ]Step-by-step
http://www59.zippyshare.com/v/U0Kk81Jd/file.html
https://www.virustotal.com/file/529b3d6a...492096583/
First do not use auto install. Perform manual installation.
1. Run the database.sql inside the install folder, and generate a md5 password for the first user in the table 'tbl_users'
2. In index.php change
"define('ENVIRONMENT', 'installation');"
for
"define('ENVIRONMENT', 'production');"
In the file sent i made this change.
3. In /app/config.php update with the db credentials
4. You can now log in with the username and password you generated in 'tbl_users'
Note: I did not need to place the "Purchase code", because I changed the "MX_Controller" class that does the validation.
Okay, now enjoy.
I think can create a thread, only for nulled
(04-13-2017 08:53 AM)satwhow Wrote: [ -> ]NULLING THE 2.0 VERSION
I have not tested all the features, but the "AUTO POST" feature is working perfectly, which for me was what mattered.
Test the other features and give the feedback in this post
Change the content of /app/third_party/MX/Controller.php
by this:
PHP Code:
<?php (defined('BASEPATH')) OR exit('No direct script access allowed');
require dirname(__FILE__).'/Base.php';
class MX_Controller
{
public $autoload = array();
public function __construct()
{
$class = str_replace(CI::$APP->config->item('controller_suffix'), '', get_class($this));
log_message('debug', $class." MX_Controller Initialized");
Modules::$registry[strtolower($class)] = $this;
/* copy a loader instance and initialize */
$this->load = clone load_class('Loader');
$this->load->initialize($this);
$CI = &get_instance();
$MAXIMUM_ACCOUNT = 0;
$settings = $CI->db->select("*")->get(SETTINGS_TB)->row();
if(!empty($settings)){
if(!defined('LOGO'))
define("LOGO", BASE.$settings->logo);
if(!defined('TITLE'))
define("TITLE", $settings->title);
if(!defined('DESCRIPTION'))
define("DESCRIPTION", $settings->description);
if(!defined('KEYWORDS'))
define("KEYWORDS", $settings->keywords);
if(!defined('THEME'))
define("THEME", $settings->theme);
if(!defined('AUTO_ACTIVE_USER'))
define("AUTO_ACTIVE_USER", $settings->auto_active_user);
if(!defined('REGISTER_ALLOWED'))
define("REGISTER_ALLOWED", $settings->register);
if(!defined('TIMEZONE'))
define("TIMEZONE", $settings->default_timezone);
if(!defined('LANGUAGE'))
define("LANGUAGE", session('lang')?session('lang'):$settings->default_language);
if(!defined('DEFAULT_DEPLAY'))
define("DEFAULT_DEPLAY", $settings->default_deplay);
if(!defined('MINIMUM_DEPLAY'))
define("MINIMUM_DEPLAY", $settings->minimum_deplay);
if(!defined('GOOGLE_API_KEY'))
define("GOOGLE_API_KEY", $settings->google_api_key);
if(!defined('FACEBOOK_ID'))
define("FACEBOOK_ID", $settings->facebook_id);
if(!defined('FACEBOOK_SECRET'))
define("FACEBOOK_SECRET", $settings->facebook_secret);
if(!defined('GOOGLE_ID'))
define("GOOGLE_ID", $settings->google_id);
if(!defined('GOOGLE_SECRET'))
define("GOOGLE_SECRET", $settings->google_secret);
if(!defined('TWITTER_ID'))
define("TWITTER_ID", $settings->twitter_id);
if(!defined('TWITTER_SECRET'))
define("TWITTER_SECRET", $settings->twitter_secret);
$CI->input->set_cookie('uploadMaxSize', $settings->upload_max_size, 86400);
date_default_timezone_set(TIMEZONE);
$MAXIMUM_ACCOUNT = $settings->maximum_account;
}
if(!defined('NOW'))
define("NOW",date("Y-m-d H:i:s"));
if(!session('uid')
and& segment(1) != ""
and& segment(1) != 'openid'
and& segment(1) != 'cronjob'
and& segment(1) != 'cronjob2'
and& segment(1) != 'cronjob3'
and& segment(1) != 'cronjob4'
and& segment(1) != 'cronjob5'
and& segment(1) != 'cronjob6'
and& segment(1) != 'cronjob7'
and& segment(1) != 'verify'
and& segment(2) != 'ajax_verify'
and& segment(2) != 'ajax_login'
and& segment(2) != 'ajax_register'
and& segment(1) != 'lang'){
redirect(PATH);
}
$users = $CI->db->select("*")->where('id', session('uid'))->get(USERS_TB)->row();
if(!empty($users)){
$accounts = $CI->db->select("*")->where('uid', session('uid'))->get(INSTAGRAM_ACCOUNT_TB)->result();
if(!defined('COUNT_ACCOUNT'))
define("COUNT_ACCOUNT", count($accounts));
$MAXIMUM_ACCOUNT = $users->maximum_account;
}
if(!defined('MAXIMUM_ACCOUNT'))
define("MAXIMUM_ACCOUNT", $MAXIMUM_ACCOUNT);
/* autoload module items */
$this->load->_autoloader($this->autoload);
}
public function __get($class)
{
return CI::$APP->$class;
}
}
Don't Forget to add Rep++