Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
vnsm /
plugins /
system /
campaignrabbit /
Delete
Unzip
Name
Size
Permission
Date
Action
campaignrabbit.php
6.68
KB
-rwxr-xr-x
2019-05-17 07:58
campaignrabbit.xml
710
B
-rwxr-xr-x
2019-05-17 07:58
index.html
98
B
-rwxr-xr-x
2019-05-17 07:58
Save
Rename
<?php /** * @package J2Store * @author Alagesan, J2Store <support@j2store.org> * @copyright Copyright (c)2018 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later */ /** ensure this file is being included by a parent file */ // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); jimport( 'joomla.plugin.plugin' ); jimport('joomla.html.parameter'); // Make sure FOF is loaded, otherwise do not run if (!defined('F0F_INCLUDED')) { include_once JPATH_LIBRARIES . '/f0f/include.php'; } if (!defined('F0F_INCLUDED') || !class_exists('F0FLess', true)) { return; } // Do not run if Akeeba Subscriptions is not enabled JLoader::import('joomla.application.component.helper'); if (!JComponentHelper::isEnabled('com_j2store', true)) { return; } class plgSystemCampaignrabbit extends JPlugin { function getPluginParams(){ try{ $plugin_data = JPluginHelper::getPlugin('j2store', 'app_campaignrabbit'); $params = new \JRegistry; $params->loadString($plugin_data->params); }catch (Exception $e){ $params = new \JRegistry('{}'); } return $params; } public function canRun(){ $app = JFactory::getApplication(); $run_status = false; //chk app campaign enabled if(JPluginHelper::isEnabled('j2store', 'app_campaignrabbit') && $app->isSite()) { $params = $this->getPluginParams(); $app_id = $params->get('app_id', ''); $is_verified = $params->get('is_verified', 0); if(!empty($app_id) && $is_verified){ $run_status = true; } } return $run_status; } function onAfterRoute() { $app = JFactory::getApplication(); $option = $app->input->get('option',''); $command = $app->input->get('command',''); if($option == 'com_j2store' && $command == 'campaign_double_opt'){ $order_id = $app->input->getString('order_id',''); F0FTable::addIncludePath(JPATH_ADMINISTRATOR.'/components/com_j2store/tables'); $order_table = F0FTable::getInstance('Order', 'J2StoreTable')->getClone(); $order_table->load(array( 'order_id' => $order_id )); F0FModel::addIncludePath(JPATH_SITE.'/plugins/j2store/app_campaignrabbit/app_campaignrabbit/models'); $model = F0FModel::getTmpInstance('AppCampaignRabbits', 'J2StoreModel'); if(!empty($order_table->order_id) && $order_table->order_id == $order_id ) { $model->orderSyn($order_table, true); } } } function onAfterRender() { if($this->canRun()){ $params = $this->getPluginParams(); $app_id = $params->get('app_id', ''); $analaysis_array = array( 'app_id' => $app_id ); $user = JFactory::getUser(); if($user->id > 0){ $analaysis_array['email'] = $user->email; } $script_content = '<script type="text/javascript"> window.campaignrabbit = '.json_encode($analaysis_array).'; !function(e,t,n,p,o,a,i,s,c){e[o]||(i=e[o]=function(){i.process?i.process.apply(i,arguments):i.queue.push(arguments)},i.queue=[],i.t=1*new Date,s=t.createElement(n),s.async=1,s.src=p+"?t="+Math.ceil(new Date/a)*a,c=t.getElementsByTagName(n)[0],c.parentNode.insertBefore(s,c))}(window,document,"script","https://cdn.campaignrabbit.com/campaignrabbit.analytics.js","rabbit",1),rabbit("init","'.$app_id.'"),rabbit("event","pageload");</script>'; $this->_moveScript($script_content); } } private function _moveScript($script) { $app = JFactory::getApplication(); $body = str_replace('</body>', $script . "</body>", $app->getBody()); $app->setBody($body); } function onUserAfterSave($user,$isnew,$success,$msg){ if($isnew && $this->canRun()){ $task = 'create_customer'; $queue_data = array( 'user_id' => $user['id'], 'email' => $user['email'], 'ship_address_id' => 0, 'billing_address_id' => 0, 'task' => $task ); F0FModel::addIncludePath(JPATH_SITE.'/plugins/j2store/app_campaignrabbit/app_campaignrabbit/models'); $model = F0FModel::getTmpInstance('AppCampaignRabbits', 'J2StoreModel'); $customer_queue_params = $model->getRegistryObject(json_encode($queue_data)); $customer_status = $model->addCustomer($customer_queue_params); if(!$customer_status){ $tz = JFactory::getConfig()->get('offset'); $current_date = JFactory::getDate('now', $tz)->toSql(true); $date = JFactory::getDate('now +7 day', $tz)->toSql(true); $queue = array( 'queue_type' => 'app_campaignrabbit', 'relation_id' => 'user_reg_'.$user['id'], 'queue_data' => json_encode($queue_data), 'params' => '{}', 'priority' => 0, 'status' => 'new', 'expired' => $date, 'modified_on' => $current_date ); try{ F0FTable::addIncludePath(JPATH_ADMINISTRATOR.'/components/com_j2store/tables'); $queue_table = F0FTable::getInstance('Queue', 'J2StoreTable')->getClone(); $queue_table->load(array( 'relation_id' => $queue['relation_id'] )); if(empty($queue_table->created_on)){ $queue_table->created_on = $current_date; } $queue_table->bind($queue); $queue_table->store(); }catch (Exception $e){ // do nothing $this->_log($e->getMessage(),'User Register Queue Exception: '); } } } } /** * Simple logger * * @param string $text * @param string $type * @return void */ function _log($text, $type = 'message') { $plugin_data = JPluginHelper::getPlugin('j2store', 'app_campaignrabbit'); $params = new \JRegistry; $params->loadString($plugin_data->params); $isLog = $params->get('debug',0); if ($isLog) { $file = JPATH_ROOT . "/cache/app_campaignrabbit.log"; $date = JFactory::getDate(); $f = fopen($file, 'a'); fwrite($f, "\n\n" . $date->format('Y-m-d H:i:s')); fwrite($f, "\n" . $type . ': ' . $text); fclose($f); } } }